body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    color: #333;
    margin: 0;
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 2.5em;
    color: #2c3e50;
}

#session-info {
    font-size: 1.2em;
    margin-top: 10px;
}

.games-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.game {
    cursor: pointer;
    text-align: center;
    width: 120px; /* Adjusted size */
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
    overflow: hidden;
    margin: 10px;
}

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

.game:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

footer {
    text-align: center;
    margin-top: 20px;
}

#timer {
    font-size: 1.2em;
    color: #e74c3c;
}
