:root {
    --bg-color: #050505
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    font-weight: 800
}

.centered-container {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.banner {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%;
    max-height: 90vh
}

.banner-description {
    color: #f00;
    margin-top: 20px;
    letter-spacing: 1px
}

@media(min-width:1024px) {
    .banner {
        max-width: 1092px
    }

    .banner-description {
        font-size: 1.5rem
    }
}

@media(min-width:768px)and (max-width:1023px) {
    .banner {
        max-width: 90vw
    }

    .banner-description {
        font-size: 1.25rem
    }
}

@media(max-width:767px) {
    .banner {
        width: 100%;
        max-height: 80vh
    }

    .banner-description {
        font-size: 1rem
    }
}