*{
  margin:0;
  padding:0;
  box-sizing: border-box;
}
body{
  background: black;
}
header{
  background:white;
}
header > h1{
  color:black;
  text-align: center;
  font-family: monospace;
  padding:10px;
}
#action{
  color:rgb(175, 96, 96);
  text-align:center;
  font-size: medium;
  font-family: 'Courier New', Courier, monospace; 
}
.score-board{
  margin:20px auto;
  border:3px solid white;
  width:200px;
  color:white;
  border-radius: 4px;
  font-size: 40px;
  padding: 15px 20px;
  text-align: center;
  font-family: sans-serif;
  position: relative;
}
.badge{
  background: red;
  color:white;

  text-align: center;
  font-size: 14px;
  padding:2px 14px;
}
#user-label{
  position: absolute;
  top:30px;
  left:-25px;
  color:green;
}
#computer-label{
  position: absolute;
  top:30px;
  right:-30px;
}
.results{
  font-size:40px;
  color:white;
}
.results > p{
  text-align: center;
  font-weight: bold;
  font-family: fantasy;
}
img{
  border-radius: 50%;
}
.choices{
 margin:70px;
 text-align: center;
 margin-bottom: 0;
 color:white;
}
.choice{
  border: 4px solid white;
  display: inline-block;
  border-radius: 50%;
  margin:0 10px;
  padding: 10px;
  transition: all 0.7s ease-out;
  text-align: center;
  background: white;
  color:white;
  font-family: 'Courier New', Courier, monospace;

  color:red;
}
.choice:hover{
  cursor: pointer;
  color:white;

}
#action-message{
 color:white;
 text-align: center;
 font-family: fantasy;
 margin-top: 10px;
}
.green{
  border: 4px solid green;
  box-shadow: 0 0 14px green;
  background: rgb(52, 141, 52);
}
.red{
  border: 4px solid red;
  box-shadow: 0 0 14px red;
  background: rgb(168, 14, 14);

}
.grey{
  border: 4px solid grey;
  box-shadow: 0 0 14px grey;
  background: rgb(124, 132, 139);

}
