@font-face {
    font-family: SpecialElite;
    src: url("./fonts/SpecialElite-Regular.ttf");
}

html {
    background: url("background.jpg") center center fixed;
    background-size: cover;
    padding: 40px 50px 0;

    font-family: SpecialElite, serif;

    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 22px;
    color: #4c4c4c;

    @media screen and (max-width: 767px) {
        padding: 20px 16px 0;
    }
}

body {
    min-height: calc(100vh - 60px);;
    display: flex;
    flex-direction: column;

    @media screen and (max-width: 767px) {
        min-height: calc(100vh - 40px);;
    }
}

main {
    display: flex;

    @media screen and (max-width: 890px) {
        flex-direction: column;
    }
}

footer {
    margin-top: auto;
}
footer a {
    cursor: pointer;
}
footer #footer-links {
    margin-left: calc(50% - 80px);
}

#logo {
    width: 200px;
    height: 200px;

    @media screen and (max-width: 768px) {
        width: 160px;
        height: 160px;
    }
    @media screen and (max-width: 640px) {
        width: 120px;
        height: 120px;
    }

}

#info {
    width: 400px;
    margin-bottom: 30px;

    @media screen and (max-width: 460px) {
        text-align: center;
    }

    @media screen and (max-width: 890px) {
        width: 100%;
        max-width: 400px;
    }
}

#tracks {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
    width: 420px;



    @media screen and (max-width: 890px) {
        align-items: flex-start;
        margin-left: 0;
    }

    @media screen and (max-width: 460px) {
        width: 100%;
    }

    @media screen and (min-width: 461px) and (max-width: 960px) {
        width: 360px;
        max-width: 100%;
    }
}

#tracks label {
    font-size: 16px;
    line-height: 16px;
    padding: 10px 10px 5px;
    background-color: #F2F3F5;
    border-radius: 15px;
    margin-bottom: 2px;

    @media screen and (max-width: 460px) {
        font-size: 14px;
    }
}

#tracks audio {
    width: 100%;
    height: 40px;
    margin-bottom: 30px;
}


