body{
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: antiquewhite;
    margin:0;
   font-family: "Press Start 2P", cursive;
}
.content{
    flex:1;

}
.roundresult{
    box-sizing: content-box;
    display: flex;
    justify-content: center;
    margin-top: 100px;
    font-size: 24px;
}
.header{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: rgb(76, 2, 2);
    padding: 16px;
    background-color: rgb(237, 218, 110);
    
}
.choice{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.choice button{
 height:169px;
 width: 169px;
 font-size: 120px;
 background-color: blanchedalmond;
 border: 1px solid black;
 border-radius: 10px;
}
.userchoices{
    display:flex;
    align-items: center;
    justify-content: center;
    gap:69px;
   padding-top: 200px;
}
.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
    background-color: rgb(246, 231, 134);
}
.result{
    display: flex;
    flex-direction: column;
   margin-top: 70px;
   align-items: center;
   gap:20px;
}
.playagainbutton{
    padding:10px;
    border-radius: 20px;
    background-color: yellow;
    font-family: "Press Start 2P";
}