﻿body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #191931;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    padding: 20px;
}

/* Center the game grid on smaller screens */
@media (max-width: 600px) {
    .game-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; /* Center items horizontally */
        padding: 0; /* Remove padding on small screens */
    }
}

.game-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

    .game-item img,
    .game-item video {
        width: 213px;
        max-height: 118px;
    }

    .game-item video {
        display: none; /* Hide video by default */
    }

h1 {
    color: white;
    padding: 20px;
}
