@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #8b7cd8;
    color: white;
    font-family: 'Montserrat', sans-serif;

}
header{
    background:white;
    padding: 30px;
}
header h1{
    color: #25272e;
    text-align: center;
    font-family: 'Audiowide', cursive;
}
.score-board{
    background-color: white;
    color: #624adc;
    border: 3px solid white;
    width: 200px;
    margin: 40px auto;
    font-size: 40px;
    border-radius: 5px;
    text-align: center;
    padding: 15px 20px;
    position: relative;
}
.badge{
    background: #e2584d;
    font-size: 12px;
    padding: 2px 10px;
}
#user-label{
    position: absolute;
    top: 20px;
    left: -24px;
    color: white;
    /*background-color: #2b61ea;*/
    background: linear-gradient(140deg, #EADEDB 0%, #3317ec 50%, #5dcbec 75%);
    border-radius: 4px;
}
#comp-label{
    position: absolute;
    top: 20px;
    right: -30px;
    color: white;
    /*background-color: #2b61ea;*/
    background: linear-gradient(140deg, #EADEDB 0%, #3317ec 50%, #5dcbec 75%);
    border-radius: 4px;
}
.result{
    font-size: 30px;
}

.result > p{
    text-align: center;
}
.choices{
    text-align: center;
    margin: 50px 0;
}
.choice{
    background-color: white;
    display: inline-block;
    border-radius: 50%;
    padding: 15px;
    margin: 0 15px;
    transition: 0.4s ease;
    border: 5px solid white;
}
.choice img{
    width: 70px;
    height: 70px;
}
.choice:hover{
    background-color: white;
    border: 5px solid #eeb164;
    cursor: pointer;
}
.choice:active {
    background-color: #eeb164;
    box-shadow: 0 5px #666666b1;
    transform: translateY(4px);
}
#message{
    text-align: center;
    font-size: 20px;
}