#games {
    margin: 0px 25% 40px 25%;
    gap: 20px;
    display: grid;
    align-items: center;
    justify-content: center;
    align-content: center;
    grid-template-columns: repeat(auto-fill, 256px);
}

.game {
    width: 256px;
    height: 360px;
    margin: 10px;
    display: inline-block;
    text-align: center;
}

.game img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 2px 2px 4px #222;
    transition-duration: 200ms;
    background-color: white;

}

.game img:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 8px white;
}

.game-footer {
    padding: 8px;
    color: white;
    font-size: 12pt;
    font-style: normal;
    text-align: center;
}

@media (max-width: 1300px) {
    #games {
        margin-left: 20%;
        margin-right: 20%;
    }
}