body {
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

h1 {
    color: #2c3e50;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

#game-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 250px;
    margin: auto;
}

button {
    padding: 15px;
    font-size: 18px;
    border: none;
    background-color: #3498db;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #2980b9;
}