﻿/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

header {
    margin-bottom: 30px;
}

.game-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Press Start 2P', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.made-by {
    font-size: 18px;
    opacity: 0.7;
}

.games-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.game-card {
    background-color: #fff;
    border: 2px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 300px;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card img {
    width: 100%;
    height: auto;
}

.game-card h2 {
    font-size: 24px;
    font-weight: 500;
    padding: 10px;
    background-color: #f4f4f4;
    margin: 0;
}

footer {
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    margin-top: 30px;
}

footer p {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .games-section {
        flex-direction: column;
        align-items: center;
    }

    .game-card {
        width: 80%;
        max-width: 300px;
    }
}