@import url('https://fonts.googleapis.com/css2?family=Anton&family=IBM+Plex+Sans:wght@100&family=Orbitron&family=Raleway:ital,wght@1,200&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
body {
    background: rgb(15, 15, 15);
}
header{
    background: teal;
    padding: 20px;
}
header >  h1 {
    color: white;
    text-align: center;
    font-family: Anton, sans-serif;
}
.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 #9e979a;
    box-shadow: 0 0 10px #c4bdc0
}
.score-board {
    margin: 20px auto;
    border: 3px solid white;
    width: 250px;
    color: white;
    font-size: 36px;
    text-align: center;
    padding: 15px 20px;
    font-family: sans-serif;
    position: relative;
}
.badge {
    background: #e2584d;
    color: white;
    font-size: 15px;
    padding: 2px 10px;
    font-family: sans-serif;
}
#user-label{
    position: absolute;
    top: 30px;
    left: -25px;
}
#computer-label{
    position: absolute;
    top: 30px; 
    right: -35px;
}
.result{
    font-size: 30px;
    color: white;
}
.result > p {
    font-family: anton, sans-serif;
    text-align: center;
    
}
.choices{
    text-align: center;
    margin: 50px 0;

}
.choice {
    display: inline-block;
    max-width: 30%;
    max-height: 30%;
    margin-top: 0 20px;
    border-radius: 50%;
    padding: 10px;
    transition: all 0.3s ease;
}
.choice:hover {
    cursor: pointer;
    background: yellow;
}
#message{
    text-align: center;
    color: white;
    font-family: Anton, sans-serif;
    font-size: 20px;
    margin-top: 20px
}
