body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin-top: 50px;
}

h2 {
    text-align:center;
}

.game {
    width: 100%;
    max-width: 500px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 50px;
}

.score {
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.choices {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.choice {
    background-color: #369db6;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

.choice:hover {
    background-color: #158aa7;
}

.result {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.leaderboard {
    width: 100%;
    max-width: 500px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
}

img {
    border-radius: 15%;
    }