html {
    font-family: sans-serif;
}
body {

    margin: 0 auto;
    padding: 0 20px;
    margin: 0;
}

.game-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.options {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.options button {
    font-size: 25px;
    border-radius: 10px;
    border: 1px solid gray;
    cursor: pointer;
}

.options button:active {     
    background-color:rgba(83, 83, 183, 0.815);
    color: white;
}

.resultParas {
    text-align: center;
}

.scoreboard {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.scoreboard {
    margin-top: 20px;
}

.scoreboard div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scoreboard div p {
    margin: 5px;
}

.scores {
    width: 50px;
    height: 50px;
    border: 1px solid lightblue;
    border-radius: 10px;
    font-size: 40px;
}

.reset-btn {
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid white;
    color: white;
    padding: 2px 12px;
    background-color: #3882f6;
}