@import url('https://fonts.googleapis.com/css?family=Exo:400,700,900');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #1f3d7a;
}

header {
  background: white;
  padding: 20px;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  text-align: center;
}

.score-board {
  font-family: 'Exo', sans-serif;
  border: 3px solid white;
  width: 200px;
  margin: 20px auto;
  color: white;
  font-size: 45px;
  border-radius: 4px;
  text-align: center;
  padding: 15px 20px;
  position: relative;
}

.badge {
  background-color: #E2584D;
  color: white;
  font-size: 20px;
  padding: 2px 10px;
  font-family: 'Exo', sans-serif;
}

#user-label {
  position: absolute;
  top: 30px;
  left: -30px;
}

#comp-label {
  position: absolute;
  top: 30px;
  right: -40px;
}

.result {
  font-family: 'Exo', sans-serif;
  color: white;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  padding: 15px;
}

.choices {
  margin-top: 50px;
  text-align: center;
}

.choice {
  display: inline-block;
  border: 5px solid white;
  padding: 25px;
  border-radius: 50%;
  margin: 0 20px;
}

.choice:hover {
  cursor: pointer;
  background: #183061;
  transition: all 0.3s ease;
}

#action-message {
  font-family: 'Exo', sans-serif;
  color: white;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  padding: 15px;
  margin-top: 15px;
}

.reset-button{
  margin-top: 50px;
  text-align: center;
}

.button {
  display: inline-block;
  border: 5px solid white;
  padding: 10px;
  border-radius: 50%;
  margin: 20px 20px;
}

.button:hover {
  cursor: pointer;
  background: #183061;
  transition: all 0.3s ease;
}

.footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: .3rem;
  background-color: rgba(242, 244, 247, .5);
  text-align: center;
}

a {
  color: lightgray;
}

.green-circle {
  border: 4px solid #4dcc7d;
  box-shadow: 0 0 10px #31b43a;
}

.red-circle {
  border: 4px solid #fc121b;
  box-shadow: 0 0 10px #d01115;
}

.gray-circle {
  border: 4px solid #464647;
  box-shadow: 0 0 10px #25292b;
}
