body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f8ff;
}

.container {
    text-align: center;
}

.main-logo {
    max-width: 400px;
    margin-bottom: 30px;
}

h1 {
    font-size: 3em;
    color: #333;
    margin-bottom: 50px;
}

.game-selection {
    display: flex;
    gap: 20px;
}

.game-button {
    display: inline-block;
    padding: 20px 40px;
    font-size: 1.5em;
    color: #fff;
    background-color: #007bff;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.game-button:hover {
    background-color: #0056b3;
}