*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Poppins' ,sans-serif;
}
body{
    background-color: #24272E; 
}
header {
    background-color: white;
    padding: 20px;
    border-bottom: 10px solid tomato;
}
header h1{
    color: #24272E;
    text-align: center;
}

.instruction{
    margin:120px 0 0 0;
    font-size: 15px ;
    color:white;
    text-align: center;
}
.score-board{
    border: 3px solid white;
    width: 200px;
    margin:20px auto;
    color: white;
    font-size: 40px;
    border-radius: 4px;
    text-align: center;
    padding: 15px 20px;
    position: relative;
}
.name-tag{
    background-color: tomato;
    font-size: 14px;
    padding: 2px 10px;
}
#user-label{
    position: absolute;
    top:30px;
    left:-20px;
}
#comp-label{
    position: absolute;
    top:30px;
    right:-50px;
}
.result{
    font-size: 40px ;
    color:white;
    text-align: center;
}
.choices{
    text-align: center;
    margin:15px auto;
}
.choice{
    display: inline-block;
}
.choice img{
    height: 90px;
    width: 90px;
    margin: 0 15px;
    padding: 12px;
    border: 4px solid white;
    border-radius: 50%;
    transition: all 0.4s ease;
}
.choice img:hover{
    cursor: pointer;
    background-color: cadetblue;
}
#action-message{
    margin:10px 0 0 0;
    font-size: 15px ;
    color:white;
    text-align: center;
}

.green-glow{
    border:4px solid #39ff14;
    border-radius: 50vh;
    box-shadow: 0 0 10px green;
}

.red-glow{
    border:4px solid #ff073a;
    box-shadow: 0 0 10px red;
}

.gray-glow{
    border:4px solid gray;
    box-shadow: 0 0 10px gray;
}