body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #333333;
    color: #ffffff; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.game-container {
    background-color: #424242;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.choices {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

button {
    padding: 24px 36px;
    font-size: 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background-color: #1976d2; 
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 300px;
}

button:hover {
    background-color: #1565c0;
}

#result {
    font-size: 20px;
    font-weight: bold;
    color: #8acafe; 
    margin-top: 30px;
}

a {
    color: #8acafe;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
