@import url('https://fonts.googleapis.com/css?family=Asap:400,500,700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  background-color: #24272E;
}
header {
  background: white;
  padding: 1.5em;
}

header > h1 {
  color: #24272E;
  text-align: center;
  font-family: Asap, sans-serif;
}

.score_board {
  margin: auto;
  margin-top: 2em;
  border: .25em solid white;
  border-radius: .75em;
  text-align: center;
  color: white;
  font-size: 46px;
  font-family: Asap, sans-serif;
  width: 10em;
  padding: 1em 2.5em;
  position: relative;
}
.badge {
  background: #E2584D;
  color: white;
  font-size: 14px;
  font-family: Asap, sans-serif;
  padding: .5em 1em;
}

#user-label {
  position: absolute;
  top: 4.5em;
  left: -2.5em;
}
#comp-label {
  position: absolute;
  top: 4.5em;
  right: -2.5em;
}

.result {
  font-size: 40px;
  color: white;
}
.result > p {
  text-align: center;
  font-weight: bold;
  font-family: Asap, sans-serif;
}

.options {
  margin: 4em 0;
  text-align: center;
}

.option {
  display: inline-block;
  border: 0.25em solid white;
  border-radius: 50%;
  margin: 0 1.25em;
  padding:1.1em;
  transition: all 0.3s ease;

}

.option:hover {
  cursor: pointer;
  background: darkgreen;
}

#move {
  text-align: center;
  color: white;
  font-family: Asap, sans-serif;
  font-weight: bold;
  font-size: 20px;
}
