* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #26cd4d;
    color: #fff;    
}
header {
    background: white;
    padding: 25px;
}
header > h1 {
    color: #252630;
    text-align: center;
    font-family: sans-serif;
}
article > p {
    text-align: center;
    padding: 0.7em;
    font-size: 1.2rem;
    font-family: sans-serif;
}

.score-board {
    border: 2px solid #fff;
    width: 300px;    
    margin: 10px auto;
    font-size: 1.5rem;
    padding: 0.7em;
    text-align: center;
    border-radius: 4px;
    position: relative;
}

.badges {    
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: #1a1919;
}

#user-label {
    position: absolute;
    top: 25px;
    left: -20px;
    background: #ef9645;
    padding: 0 5px;
}

#computer-label {
    position: absolute;
    top: 25px;
    right: -25px;
    background: #ef9645;
    padding: 0 5px;
   
}

.player-score {
    border: 2px solid #fff;
    width: 400px;
    margin: 70px auto 10px auto;
    font-size: 2rem;
    padding: 0.7em;
    text-align: center;
    border-radius: 15px;
    position: relative;
}

.choices {
    font-size: 1.5rem;
    text-align: center;
}

#result {
    font-size: 1.7rem;
    margin-top: 10px;
}

.buttons {
    display: flex;
    justify-content: center; 
}

.btn {
    border-radius: 50px;
    margin: 1em;
    cursor: pointer;
    font-size: 3em;
    border: 2px solid #333 ;
    padding: 0.4em;  
    
}    


#reset {
    width: 50%;
    font-size: 2rem;
    display: block;
    border-radius: 15px;
    border: 2px solid #333;
    margin: 0 auto;    
    color: #1a1919;
    font-weight: 900;
    
    
    
}