@font-face {
    font-family: "Molot";
    font-style: normal;
    font-weight: normal;
    src: local("Molot"), url("./resources/Molot.woff") format("woff");
}

@font-face {
    font-family: "Caviar Dreams";
    font-style: normal;
    font-weight: normal;
    src: local("Caviar Dreams"), url("./resources/CaviarDreams.woff") format("woff");
}

html {
    height: 100%;
    font-size: 16px;
}

body {
    padding: 0;
    margin: 0;
}

.layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    min-height: 100vh;
    width: 100%;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-container {
    position: relative;
    display: grid;
    z-index: 99;
    justify-content: center;
    grid-template-rows: 300px auto auto auto auto;
    grid-row-gap: 32px;
    padding: 0 10px;
}

.social {
    display: flex;
    column-gap: 1rem;
    font-family: "Caviar Dreams", sans-serif;
    font-size: 3rem;
    color: #fff;
    justify-content: center;
}

.social > p {
    display: flex;
    align-items: center;
}

.social img {
    width: 50px;
}

.logo {
    display: flex;
    margin: 0 auto;
    align-items: center;
}

.logo img {
    height: 256px;
}

.brand {
    font-family: "Molot", sans-serif;
    color: #000;
    letter-spacing: 2px;
    font-size: 10rem;
    text-shadow: 0 0 5px #fff;
    text-transform: capitalize;
}

h1 {
    font-family: "Molot", sans-serif;
    color: #000000;
    letter-spacing: 2px;
    font-size: 10rem;
    text-shadow: 0 0 5px #fff;
    font-weight: 700;
    line-height: 0.85;
}

h2 {
    font-family: "Caviar Dreams", sans-serif;
    letter-spacing: 1px;
    color: #001212;
    font-size: 3rem;
    text-shadow: 0 0 5px #6cf;
    font-weight: 700;
}

.center-text {
    text-align: center;
}

.center-text-right {
    text-align: right;
}

.center-text-left {
    text-align: left;
}

a:link,
a:visited,
a:active {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}

footer {
    font-family: "Caviar Dreams", sans-serif;
    z-index: 98;
    color: #fff;
    padding: 10px;
    font-size: 16px;
}

footer > p {
    text-align: end;
}

footer a {
    font-weight: 700;
}

@media (max-width: 1200px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 12px;
    }

    .content {
        align-items: flex-start;
    }

    .brand {
        font-size: 7.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 10px;
    }

    .main-container {
        margin-top: 50px;
        grid-template-rows: 250px auto auto auto;
    }

    .logo img {
        height: 200px;
    }

    .brand {
        font-size: 7.5rem;
    }

    .social {
        font-size: 2rem;
    }

    .social img {
        width: 35px;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 8px;
    }
    .brand {
        font-size: 5rem;
    }
    .social img {
        width: 30px;
    }
}

#audio-btn {
    display: block;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    color: #aee;
    font-family: "Caviar Dreams", sans-serif;
    font-size: 1rem;
    padding: 6px 16px;
    border: 1px solid rgba(170, 238, 238, 0.3);
    border-radius: 20px;
    cursor: pointer;
    letter-spacing: 1px;
    z-index: 200;
}

#audio-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}
