/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* at-rules */
@font-face {
    font-family: 'Handwritten Serif';
    src: url('fonts/handwrittenSerif.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'UGLY FONT';
    src: url('fonts/FontNo1.ttf') format('truetype');
    font-weight: normal;
    font-style:normal;
}

@font-face {
    font-family: 'FIRE FONT';
    src: url('fonts/goodFont.ttf') format('truetype');
    font-weight: bolder;
    font-style:normal;
}

@font-face {
    font-family: 'regular';
    src: url('fonts/SansSerifFunnySymbols.ttf') format('truetype');
    font-weight: normal;
    font-style: monospace;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
    
}

/* FONT STUFF */
p {
    font-family: 'regular';
    color: white;
}

h1, h2, h3 {
    font-family: 'regular';
    color: white;
}

h2 {
    font-family: 'Handwritten Serif';
}

body {
    background-image: url('images/background5.jpg');
}

.top {
    display: flex;
    flex-direction: row;
    align-items: bottom;
    justify-content: space-between;
}

.top a {
    color: white;
    font-family: 'FIRE FONT';
    font-size: 1.7rem;
    padding-top: 5%;
    padding-right: 9%;
}

h1 {
    padding-bottom: 2%;
    padding-left: 10%;
    font-size: 7rem;
}

/* PLAYLISTS */
.playlist {
    display: flex;
    flex-direction: row-reverse;
    padding-left: 5%;
    padding-right: 5%;
    justify-content: center;
    gap: 4%;
    padding-bottom: 2%;
    align-items: center;
}

.description {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: right;
}

.description h2 {
    font-size: 5.5rem;
    padding-bottom: 1rem;
}

.description {
    transition: transform 0.5s ease;
}

.description:hover {
    animation: pulse 1s ease-in-out infinite;
}

.description p {
    font-size: 2rem;
}