@font-face {
    font-family: "Burbank Big Condensed Black";
    src: url("https://db.onlinewebfonts.com/t/cdc8c3de1e6bd5a9a67c6a001f9fedd0.eot");
    src: url("https://db.onlinewebfonts.com/t/cdc8c3de1e6bd5a9a67c6a001f9fedd0.eot?#iefix")format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/cdc8c3de1e6bd5a9a67c6a001f9fedd0.woff2")format("woff2"),
        url("https://db.onlinewebfonts.com/t/cdc8c3de1e6bd5a9a67c6a001f9fedd0.woff")format("woff"),
        url("https://db.onlinewebfonts.com/t/cdc8c3de1e6bd5a9a67c6a001f9fedd0.ttf")format("truetype"),
        url("https://db.onlinewebfonts.com/t/cdc8c3de1e6bd5a9a67c6a001f9fedd0.svg#Burbank Big Condensed Black")format("svg");
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

html,
body {
    height: 100%;
    font-family: "Burbank Big Condensed Black";
    color: #fff;
}


.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.header {
    height: 80px;
    background-color: #2A2A2A;
    display: flex;
    align-items: center;
    padding: 0 0 0 20px;
    z-index: 9999;
}

.header__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header__logo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.logo {}

.logo-text {
    color: #FFFFFF;
    font-size: 45px;
    padding-top: 7px;
}

.header__login {}

.sign-in {
    height: 80px;
    width: 140px;
    background-color: #FFFF00;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    color: #2A2A2A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.sign-in:hover,
.main__button:hover {
    background-color: #cccc04;
}

.main {
    background-color: #000;
    background-image: url('../img/test.png');
    background-size: cover;
    display: flex;
    align-items: center;
    flex: 1 0;
    position: relative;
}

.main__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main__information {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 200px;
    z-index: 999;
}

.main__title {
    text-transform: uppercase;
    font-style: normal;
    font-weight: 400;
}

.upper-title {
    font-size: 60px;
    color: #FFFF00;
    margin-bottom: 20px;
}

.lower-title {
    font-size: 150px;
    color: #FFFFFF;
}

.main__description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    max-width: 575px;
    text-align: center;
    line-height: 30px;
    margin-bottom: 30px;
}

.main__button-container {}

.main__button {
    height: 55px;
    width: 190px;
    background-color: #FFFF00;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
}

.v-bucks__button {
    padding-top: 5px;
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    color: #121212;
}

.main__image {}

.vbucks-image {
    position: absolute;
    bottom: 0;
    right: 0;
}

.footer {
    height: 200px;
    background-color: #2A2A2A;
    color: #9A9A90;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.footer__logo {
    display: flex;
    flex-direction: row;
    gap: 10px
}

.footer__logo-text {
    color: #9A9A90;
    font-size: 45px;
    padding-top: 7px;
}

.footer__logo-content {
    color: #9A9A90;
}

.footer__content {}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #9A9A90;
    text-align: center;
}

@media (max-width: 960px) {
    .main {
        padding: 0 20px;
    }

    .main__container {
        justify-content: center;
    }

    .main__information {
        padding-left: 0;
    }

    .vbucks-image {
        width: 300px;
    }
}

@media (max-width: 475px) {
    .upper-title {
        font-size: 40px;
        margin-bottom: 0;
    }

    .lower-title {
        font-size: 70px;
    }

    .main__description {
        font-size: 16px;
        margin: 25px 0;
        line-height: 20px;
    }

    .footer {
        height: 150px;
    }

    .footer__logo-content {
        width: 25px;
    }

    .footer__logo-text {
        font-size: 30px;
    }

    .footer-text {
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .logo-text {
        display: none;
    }
}