﻿
/* game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 240px));
    justify-content: left;
    gap: 30px 30px; /*row column*/
}

/* Individual game Card */
.game-card {
    padding: 10px;
    transition: transform 0.2s ease-in-out;
    text-align: center;
    margin: 0;
    background-color: var(--darkBlue2)
}
    .game-card:hover {
        transform: scale(1.05);
    }
    /* game Description */
    .game-card p {
        font-size: 14px;
        color: var(--textBlue1);
        text-align: left;
    }

/* game Title */
.card-game-title {
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: var(--textBlue1);
}

/* game Image */
.card-game-image {
    width: auto;
    height: 160px;
    object-fit: cover;
}