/* CAROUSEL*/

.game-carousel-card {
    width: 98% !important;
}

.game-carousel-slide {
    display: inline-block;
    /* height: 100%; */

}

.game-carousel-slide-image-container {
    /* height: 100%; */

}

.game-carousel-image {
    display: inline-block;
    /* height: 100%; */
    width: 100%;
}

.game-carousel-indicators {

}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 3rem !important;
  height: 3rem !important;
  color: white;
}
.game-carousel-indicator-button {
    width: 50px !important;
    height: 5px !important;
    border-radius: 3rem;
    border: 1px solid white !important;
    background-color: #8e8e8f !important;
}

.game-carousel-indicator-button.active {
    background-color: orange !important;
}

.game-landing-content-container {
    font-family: 'Kanit';
    font-style: normal;
    display: flex;
    flex-direction: column;
}

.game-landing-text-container {
    padding: 15px;
}

.game-landing-title {
    font-family: 'Oswald';
    font-style: normal;
    font-size: 4rem;
    font-weight: 900;
}

.game-landing-subtitle {
    font-family: 'Oswald';
    font-style: normal;
    font-size: 3rem;
    font-weight: 900;
}

.game-landing-text {
    font-size: 1.75rem;

}

.game-landing-button-container {
    display: flex;
    margin-bottom: 15px;
}

.game-landing-button {
    border: none;
    width: 200px;
}

.game-landing-button-image {
    width: 100%
}

.game-landing-image-container {
    padding-bottom: 15px;
}

.game-landing-image {
    width: 100%;
}

/*  ------- Reactive Sizing -------  */


/* Mobile Screen */
@media screen and (max-width: 790px) {
    :root {}

    .game-carousel-card {
        border: 1px solid white !important;
    }

    .game-carousel-indicators {
        margin-bottom: 0.5rem !important;
    }

    .game-carousel-indicator-button {
        width: 25px !important;
        height: 3px !important;
        border-radius: 3rem;
        
    }

    .game-landing-title {
        font-size: 2.25rem;
        font-weight: 900;
    }

    .game-landing-subtitle {
        font-size: 1.5rem;
        font-weight: 900;
    }

    .game-landing-text {
        font-size: 1rem;

    }

    .game-landing-button-container {
        justify-content: center;
        align-items: center;
    }

}


/* Small Screen */
@media screen and (min-width: 791px) and (max-width: 1049px) {
    :root {
        --content-width: 768px;
    }

    .game-landing-content-container {
        width: var(--content-width);

    }

    .game-landing-image-container {
        width: var(--content-width);
    }

}



/* Medium Screen */
@media screen and (min-width: 1050px) and (max-width: 1280px) {
    :root {
        --content-width: 969px;
    }

    .game-landing-content-container {
        width: var(--content-width);
    }

    .game-landing-image-container {
        width: var(--content-width);
    }

}

/* Large Screen */
@media screen and (min-width: 1281px) and (max-width: 1680px) {
    :root {
        --content-width: 1200px;
    }

    .game-landing-content-container {
        width: var(--content-width);
    }

    .game-landing-image-container {
        width: var(--content-width);
    }

}


/* XLarge Screen */
@media screen and (min-width: 1681px) {
    :root {
        --content-width: 1600px;
    }

    .game-landing-content-container {
        width: var(--content-width);
    }

    .game-landing-image-container {
        width: var(--content-width);
    }

}