@import url('https://fonts.googleapis.com/css2?family=Asap:wght@500;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Asap,sans-serif ;
}

body{
    background-color: #141A26;
}
header{
    background:#141A26e;
    padding:20px;
    border-bottom: 2px solid #253140
}

header > h1 {
    color:white;
    text-align: center;
}


.scoreboard {
    margin:50px auto;
    border:3px solid white;
     text-align:center;
    width:200px;
     color:white;
      font-size: 46px;
      padding:15px 20px
    border-radius:4px;
    position: relative;
    height:75px
}

.badge{
    background-color:#A6372D;
    color:white;
    font-size:14px;
    padding:2px 10px;
}


#user-label {
    position: absolute;
    top: 30px;
    left: -25px;
}
#computer-label {
    position: absolute;
    top: 30px;
    right: -30px;
}

.result  {
    font-size:40px;
    color: white;
}

.result > p {
    text-align: center;
    font-weight: bold;
}

img{
    max-width: 100px;
}

.choices{
    margin-top:50px;
    text-align: center;
}

.choice{
    border:4px solid white;
    border-radius: 50% ;
    margin:0 20px;
    padding: 20px;
    display:inline-block;
}

.choice:hover{
    cursor: pointer;
    background:#253140;
    transition:all 0.3s ease;
}

#action-message{
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    margin-top:20px;
}

















