@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html,
body {
    min-height: 100% !important;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    background-color: #23242a;
    color: white;

    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 0.02em;
}

main {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.navbar {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5;
    width: 100%;
}

.banner {
    height: 730px;
    background-image: url('/assets/images/gacha-ovh/bg-gacha.webp');
    background-size: cover 100%;
    background-position: center top;
    background-repeat: no-repeat;
}

.navbar.bg-black {
    transition: all .2s linear;
    background-color: #121212 !important;
}

.navbar.no-sticky {
    transition: all .2s linear;
    background-color: transparent !important;
}

.navbar li > a {
    color: #efefef;
    font-weight: 600;
}

.btn-primary,
.btn-primary:link,
.bg-primary {
    border-color: #7423b6;
    background-color: #7423b6 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    border-color: #540396;
    background-color: #540396 !important;
}

.border-primary {
    border-color: #7423b6 !important;
}

h1 {
    font-size: 32px;
    font-weight: 700;
}

.banner h2 {
    font-size: 24px;
    font-weight: 600;
}

h2 {
    font-size: 28px;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

h5 {
    font-size: 16px;
    font-weight: 600;
}

h6 {
    font-size: 12px;
    font-weight: 600;
}

footer {
    background-color: #2c2d33;
}

.fw-100 {
    font-weight: 100 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.bg-gray {
    background-color: #2d2e33;
}

@media screen and (max-width: 991px)
{
    .navbar.no-sticky {
        transition: all .2s linear;
        background-color: #121212cc !important;
    }
}