﻿
.game-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gameslider {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.gameslide {
    min-width: 17%; /* Show 4 images at a time */
    box-sizing: border-box;
}

    .gameslide img {
        width: 100%;
        height: auto;
        display: block;
        padding: 5px;
    }


.gameprevious, .gamenext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: white;
    border: none;
    padding: 20px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 900;
}

.gameprevious {
    left: 10px;
}

.gamenext {
    right: 10px;
}

.game {
    color: #002147;
    font-size: 30px;
    margin: 20px;
}

@media (max-width: 768px) {
    .gameslide {
        min-width: 50%;
    }
}