@font-face {
    font-family: mellowMoonManFont;
    src: url(resources/fonts/Malvie.otf);
}

body {
    background: #24363A;
    max-width: 500px;
    margin: 0 auto;
}


h1 {
    background: linear-gradient(90deg, #C6AC80 0%, #FFEED1 41.67%, #C6AC80 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: mellowMoonManFont;
    font-size: 4vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}


.featured-track {
    margin-bottom: 1.8rem;
    -ms-transform: scale(0.85);
    -moz-transform: scale(0.85);
    -o-transform: scale(0.85);
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
}

.button-links {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 0 auto;
    max-width: 350px;
    width: 100%;
}

.filter {
    background: linear-gradient(180deg, #FFEED1 0%, #957E57 100%);
    mix-blend-mode: darken;
    position: absolute;
    top: 0;
    height: 25%;
    width: 100%;
    margin: 0 auto;
    pointer-events: none;
}

#second-filter {
    top: 25%;
}

#third-filter {
    top: 50%;
}

#fourth-filter {
    top: 75%;
}

a {
    border-radius: 29px;
    border: 4px solid #FFF;
    width: 75%;
    height: 40px;
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    line-height: normal;
    margin: 10px 0;
}

a h2 {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    width: 70%;
}

a img {
    margin-left: 1.25rem;
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 15vw;
        max-width: 300px;
        margin: 3.5rem auto 2rem auto;
        line-height: 1;
    }

    .featured-track {
        margin-bottom: 2.5rem;
        margin-top: 2.5rem;
    }

    a {
        height: 50px;
    }

    a img {
        height: 40px;
        width: 40px;
    }
}