.game-card {
    display: block;
    
    background: #d3d3d3;
    padding: 15px;
    width: 300px;

    border-radius: 12px;
    transition: transform 0.2s ease;

    justify-content: center;
}
.game-card a{
    text-decoration: none;
    color: inherit;
}

.game-card:hover {
    transform: scale(1.03);
}

.game-card__image {
    width: 100%;
    border-radius: 8px;
}

.game-card__title {
    font-size: 1.2rem;
    margin-top: 10px;
}

.game-card__description {
    font-size: 0.9rem;
    opacity: 0.8;
}