html{
    background-color:rosybrown;
}

/* containers */

.container{
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content: space-around;
    max-width:100%;
}

.title{
    display:flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-bottom:30px;
}

.title h1{
    padding: 0px;
    margin:10px;
}

.title h2{
    margin:5px;
}


#scores{
    display:flex;
    justify-content: center;
    align-items: center;
    margin-bottom:15px;
    text-align:center;

}


#scores div{
    display:flex;
    justify-content: center;
    align-items:center;
    width:200px;
    height:100px;
    margin: 5px 20px;
    border: 5px solid khaki;
    font-weight: 700;
    font-size: 3.5rem;
    font-family:fantasy;

}

#roundResults{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 100px;
    border: 5px solid rgb(27, 27, 31);
    text-align: center;
    font-weight: bolder;
    font-size: 20px;

}

/* buttons */

#btns{
    margin:20px;
    margin-bottom:50px;
}

#btns button{
    margin: 0 20px;
    width:120px;
    height:75px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    border-radius: 5px;
    font-size:20px;
    color:coral;
}

#reset {
    width: 120px;
    height: 40px;
    margin-top: 20px;
    color: #d45069;
    font-size: 20px;
}    




/* labels */

.labels{
    display:flex;
    flex-direction:row;
    justify-content: space-around;
}


#playerLabel{
    padding-right:85px;
    padding-left:20px;
    font-weight: 500;
    text-align: center;
}

#compLabel{
    padding-left: 58px;
    padding-right: 10px;
    text-align: center;
    font-weight:500;
}

#resultLabel{
    font-weight:900;
    text-align:center;
}