body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
    text-align: center;
}

.container {
    margin-top: 100px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

#result {
    margin-top: 30px;
    font-size: 24px;
    font-weight: bold;
}

#scoreboard {
    margin-top: 20px;
    font-size: 18px;
}

button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #b5c293;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

div#scoreboard > p, div#scoreboard > p > span {
    margin: 5px 0;
    font-weight: bold;
}

#final_result {
    margin-top: 30px;
    font-size: 28px;
    font-weight: bold;
}
