.gamingTopLogo {
    width: 50px; 
    margin: 10px 15px;
}

.gamingHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 50px;
    background-color: #0A384B;
    color: #ffffff;
}

.gamingHeaderLeft {
    display: flex;
}

.navButton {
    font-size: 16px;
    text-decoration: unset;
    padding-left: 15px;
    color: #ffffff;
    margin-top: 15px;
}

.navButtonActive {
    font-weight: 600;
    color: #70A2D7;
}

.rightNavButton {
    margin-top: 15px;
    padding-right: 15px;
    text-decoration: unset;
    color: #ffffff;
}

.mainContent {
    display: flex;
}

.mainContentRight {
    width: 50%;
    height: 99.5vh;
}

.mainContentImage {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.mainContentLeft {
    width: 50%;
    margin-top: 350px;
    padding: 0 50px;
    line-height: 1.4;
}

.gamingContent {
    display: flex;
}

.gamingContentLeft {
    width: 50%;
    margin-top: 400px;
    padding: 0 50px;
    line-height: 1.4;
}

.gamesContentRight {
    width: 50%;
    margin-top: 250px;
    background-color: #000000;
    margin-right: 50px;
    border-radius: 5px;
}

.gamesContentImage {
    width: 100%;
    padding: 25px 0;
}

.galleryContent {
    display: grid;
    grid-template-columns: auto auto auto;
    row-gap: 5px;
    column-gap: 5px;
    margin-top: 55px;
    padding: 5px;
    img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
}



@media (max-width: 850px) {
    .galleryContent {
        grid-template-columns: auto auto;
    }

}

@media (max-width: 750px) {
    .mainContent {
        display: block;
    }

    .mainContentLeft {
        position: absolute;
        width: unset;
        color: #ffffff;
        margin: 250px 50px;
        background-color: rgb(255 188 90 / 50%);
        border-radius: 50px;
        padding: 35px;
    }

    .mainContentRight {
        width: unset;
    }

    .gamingContent {
        display: block;
    }

    .gamingContentLeft {
        width: unset;
        padding: 0 50px;
        line-height: 1.4;
        margin: 100px 0 50px;
    }
    
    .gamesContentRight {
        width: 100%;
        margin-top: unset;
        background-color: #000000;
        margin-right: unset;
    }
    
    .gamesContentImage {
        width: 100%;
        padding: 25px 0;
    }
}


@media (max-width: 650px) {
    .galleryContent {
        grid-template-columns: auto;
    }

}