* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #f0edfc;
}

.header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2em;
    text-align: center;
}
.header > h1 {
    font-size: xx-large;
    margin-bottom: .5em;
}


.scores {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 2em;
}

#score {
    font-size: xx-large;
}

.gamestatus, .gamescore {
height: 1em;
font-size: large;
}

.choices-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5em;
}
.choices {
    width: 35vw;
    display: flex;
    justify-content: space-between;
}
 .reset-container {
    width: 35vw;
    display: flex;
    justify-content: center;
 }

 .choice-btn {
    width: 28%;
    border-radius: 10px;
    font-size: larger;
    height: 2em;
 }

 #btn-reset {
    width: 100%;
    border-radius: 10px;
    font-size: larger;
 }

 @media only screen and (max-width: 800px) {

 .choices-container{
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5em;
}
.choices {
    width: 90vw;
    display: flex;
    justify-content: space-between;
}
 .reset-container {
    width: 90vw;
    display: flex;
    justify-content: center;
 }

 .choice-btn {
    width: 32%;  
    font-size: larger;
 }

 #btn-reset {
    width: 100%;
    font-size: larger;
 }

}