


header{
    background: white;
    padding: 20px;
}

header>h1{
    color: #24272D;
    text-align: center;
    font-family: Asap, sans-serif;
    
}

body{
    background-color: black;
        
}

.score-board {

    border:5px solid white;
    margin: 20px auto;
    width: 200px;
    color: white;
    font-size: 46px;
    border-radius: 4px;
    text-align: center;
    padding: 15px 20px;
    position: relative;
    
    
} 

.badges {

    background: red;
    color: white;
    font-size: 14px;
    padding: 2px 10px;
    
    
}

#user-label{
    position: absolute;
    top: 30px;
    left:-20px;
}

#computer-label{
    position: absolute;
    top: 30px;
    right:-20px;
}

.result{
    font-size: 40px;
    color:white;
}

.result>p{
    text-align: center;
}

.choices{
    
    text-align: center;
    
}

.choice{
    
    display:inline-block;
    border:4px solid white;
    border-radius: 50%;
    margin: 0px 20px;
    height: 200px;
    
}

.choice:hover{
    cursor: pointer;
    background: red;
}

#action-message{
    color:white;
    text-align: center;
    font-size: 40px;
    margin-top: 30px;
}
