@import url('https://fonts.googleapis.com/css2?family=Mate+SC&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #24272E;
}

header{
    background: white;
    padding: 20px;
}

header > h1{
    color: #24272E;
    text-align: center;
    font-family: Mate SC, sans-serif;
}

.score-board{
    margin: 20px auto;
    border: 3px solid white;
    border-radius: 4px;
    text-align: center;
    width: 200px;
    color: white;
    font-size: 46px;
    padding: 15px 20px;
    font-family: Mate SC, sans-serif;
    position: relative;
}

.badge{
    background-color: #E2584D;
    color: white;
    font-size: 14px;
    padding: 2px 10px;
    font-family: Mate SC, sans-serif;
}

#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;
    font-family: Mate SC, sans-serif;
}

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

.choice{
    border: 6px solid white;
    border-radius: 50%;
    display: inline-block;
    width: 150px;
    height: 150px;
    padding-top: 20px;
    margin: 0 20px;
    transition: all 0.3s ease;
}

.choice:hover{
    cursor: pointer;
    background: rgb(195, 252, 171);
}

#action-message{
    margin-top: 20px;
    text-align: center;
    color: white;
    font-family: Mate SC, sans-serif;
    font-size: 35px;
    font-weight: bold;
}


.green-glow{
    border: 6px solid #4dcc7d;
    box-shadow: 0 0 10px #31b43a;
}

.red-glow{
    border: 6px solid #fc121b;
    box-shadow: 0 0 10px #d01115;
}

.gray-glow{
    border: 6px solid #464647;
    box-shadow: 0 0 10px #25292b;
}