* { box-sizing: border-box; }
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #B1B9C1;
    height: 100vh;
}
header {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    height: 50px;
}
header img {
    height: 40px;
    width: auto;
    max-width: 80%;
}
section {
    display: flex;
    justify-content: center;
    align-items: start;
    background: url('../S4E/assets/img/background-s4e-600x1200.jpg') no-repeat center;
    background-size: cover;
}

section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.banner-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    color: #fff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.banner-container > * {
    position: relative;
    z-index: 1;
}

.banner-container .wrapper-content {
    height: 530px;
}

.banner-container .wrapper-buttons {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
}

.profile {
    margin: 32px 0;
}
.profile img {
    width: 120px;
    height: 120px;
    border-radius: 999rem;
    object-fit: cover;
}
.profile-small {
    margin: 24px 0;
}
.profile-small img {
    width: 100px;
    height: 100px;
    border-radius: 999rem;
    object-fit: cover;
}
.headline {
    margin-top: 0;
    margin-bottom: 0;
}
.headline .title {
    font-size: 1rem;
    line-height: 1.4;
}
.title--bold {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    display: block;
}
.title--light {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    display: block;
}
.vartitle {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-top: 0;
    margin-bottom: 0rem;
}
.subtitle {
    margin-top: 0;
    margin-bottom: 0rem;
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
}
.counter {
    height: 80px;
    width: 100%;
    margin-bottom: 0;
}
.counter iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.counter-text {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    line-height: 18px;
    margin-top: 0;
    text-transform: uppercase;
}
.leaderboard-wrapper {
    position: relative;
    top: -30px;
    left:50%;
    transform: translateX(-50%);
    width: 100%;
    overflow: hidden;
}
.leaderboard-wrapper iframe {
    border: none;
    width: 328px;
    height: 496px;
    transform: scale(0.8);
}
.button {
    margin-top: 24px;
}

.button-single {
    position: absolute;
    margin-top: 5px;
}

.button a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
}

.button a.active {
    border-bottom: 1px solid #fff;
}

.button .btn {
    display: inline-block;
    padding: 10px 25px;
    margin: 5px 0;
    text-transform: uppercase;
    border-radius: 24px;
    font-size: 16px;
    min-width: 200px;
    font-family: 'Roboto Condensed', sans-serif;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
}

.button .btn.btn-primary {
    background-color: rgb(50, 197, 255);
    border: 1px solid rgb(50, 197, 255);
    color: #fff;
}

.button .btn.btn-secondary {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.secondary-buttons {
    display: flex;
    gap: 24px;
}
.secondary {
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
}
.secondary:hover {
    color: black;
}
.secondary.active {
    color: #fff;
    text-decoration: underline;
}

@media only screen and (min-width: 600px) {

}

@media only screen and (min-width: 768px) {
    section {
        background: url('../S4E/assets/img/background-s4e.jpg') no-repeat center;
        background-size: cover;
    }

    .banner-container .wrapper-content {
        height: auto;
    }

    .banner-container .wrapper-buttons {
    }

    .banner-container {
        position: relative;
        width: 75vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .headline {
        margin-bottom: 24px;
    }

    .leaderboard-wrapper {
        top: 0px;
    }

    .leaderboard-wrapper iframe {
        transform: scale(1);
    }
}