body {
    background-color: #264027;
    color: #e1e1e1;
    font-family: 'Kanit', sans-serif;
    margin-bottom: 0px;
}

#minecraft-header {
    background: url('../images/minecraft-banner.png');
    background-size: auto 100%; /* Adjusted to scale the height to 100% of the container */
    background-position: center center;
    background-repeat: no-repeat; /* Ensures the image does not repeat */
    height: 80vh;
    margin-bottom: 10vh;
    width: 100%;
    position: relative;
}

.minecraft-logo > img {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
}

.minecraft-title {
    font-family: 'VT323', sans-serif;
}

.minecraft-sub-header {
    font-family: 'VT323', sans-serif;
    font-size:3em;
}

.minecraft-desc {
    font-size: 1.3em;
}


#cod-lobby {
    background: url('../images/cod-lobby.png');
    background-size: auto 100%; /* Adjusted to scale the height to 100% of the container */
    background-position: center center;
    background-repeat: no-repeat; /* Ensures the image does not repeat */
    padding: 200px 0;
}

#minecraft-discord {
    background: url('../images/minecraft-discord.png');
    background-size: auto 100%; /* Adjusted to scale the height to 100% of the container */
    background-position: center center;
    background-repeat: no-repeat; /* Ensures the image does not repeat */
    background-color: #0b0b0b;
    padding: 300px 0;
    margin-top: 100px;
}

.btn-yellow {
    background-color: #e6b500;
    border-color: #c19800;
    color:#000;
}

    .btn-yellow:hover {
        background-color: #c19800;
        border-color: #ae8900;
        color: #000;
    }

.text-yellow {
    color: #e6b500;
}

.mt-n-1 {
    margin-top:-100px;
}

/* Default image for mobile devices */
#cod-players {
    background-image: url('../images/players-mobile.png');
    background-size: auto 100%; /* Adjusted to scale the height to 100% of the container */
    background-position: center center;
    background-repeat: no-repeat; /* Ensures the image does not repeat */
    height: 60vh;
    width: 100%;
}

/* For tablets, screens wider than 768px */
@media (min-width: 768px) {
    #cod-players {
        background-image: url('../images/players-tablet.png');
        background-size: auto 100%; /* Adjusted to scale the height to 100% of the container */
        background-position: center center; /* Adjusts the position */
        background-repeat: no-repeat; /* Ensures the image does not repeat */
        height: 70vh;
        width: 100%;
    }
}

/* For desktops, screens wider than 1024px */
@media (min-width: 1024px) {
    #cod-players {
        background-image: url('../images/players.png');
        background-size: auto 100%; /* Adjusted to scale the height to 100% of the container */
        background-position: center center;
        background-repeat: no-repeat; /* Ensures the image does not repeat */
        height: 70vh;
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .mt-n-1 {
        margin-top: 50px;
    }
}

/* For tablets, screens wider than 768px */
@media (max-width: 992px) {
    .mt-n-1 {
        margin-top: 0px;
    }
}

@media (min-width: 1700px) {
    .col-xxxl-8 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .offset-xxxl-2 {
        margin-left: 8.33333333%;
    }

    .offset-xxxl-3 {
        margin-left: 16.66666667%;
    }

    .col-xxxl-6 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .offset-xxxl-4 {
        margin-left: 25%;
    }

    .col-xxxl-4 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 2200px) {
    .col-xxxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .offset-xxxl-2 {
        margin-left: 16.66666667%;
    }

    .offset-xxxl-3 {
        margin-left: 25%;
    }

    .col-xxxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .offset-xxxl-4 {
        margin-left: 33.33333333%;
    }

    .col-xxxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}