
@import url('https://fonts.googleapis.com/css2?family=Asap:wght@600&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;    
}

header {
    background: #042572;
    padding: 20px;
}

/*
.green-glow {
    border: 4px solid #4dcc7d;
    box-shadow: 0 0 10px #31b43a;
}

.red-glow {
    border: 4px solid #fc121b;
    box-shadow: 0 0 10px #d01115; 
}

.gray-glow {
    border: 4px solid #464647;
    box-shadow: 0 0 10px #25292b; 
}
*/

header > h1 {
    color: white;
    text-align: center;
    font-family: Asap, sans-serif;
}

.score-board{
    margin: 20px auto;
    border: 3px solid #042572;
    border-radius: 4px;
    text-align: center;
    width: 200px;
    color: #042572;
    font-size: 46px;
    padding: 15px 20px;
    font-family: Asap, sans-serif;
    position: relative;
}

.badge {
    background: #E2584D;
    color: white;
    font-size: 14px;
    padding: 2px 10px;
    font-family: Asap, sans-serif;
}

#user-label {
    position: absolute;
    top: 30px;
    left: -25px;

}

#comp-label {
    position: absolute;
    top: 30px;
    right: -30px;

}

.result {
    font-size: 40px;
    color: #042572;
}

.result > p {
    text-align: center;
    font-weight: bold;
    font-family: Asap, sans-serif;
}

.escolhas{
    margin-top: 50px 0;
    text-align: center;
}

.escolha{
    /*
    border: 4px solid #042572;
    border-radius: 50%;
    */
    margin: 0 0px;
    padding: -50px;
    display: inline-block;
    transition: all 1s ease;
}

.escolha:hover{
    cursor: pointer;
    background: red;
}

#action-menssage{
    text-align: center;
    color: #042572;
    font-family: Asap, sans-serif;
    font-weight: bold;
    font-size: 20px;
    margin-top: 50px;
}