@import url('https://fonts.googleapis.com/css?family=Asap:400,500,700');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #24272E;
}

header {
  background-color: white;
  padding: 20px;
}

header > h1 {
  color: #24272E;
  text-align: center;
  font-family: Asap, sans-serif;
}


.title {
  color: white;
  font-size: 40px;
  margin-top: 30px;
}

.title > p {
  text-align: center;
  font-weight: bold;
  font-family: Asap, sans-serif;
}

.game-title {
  color: white;
  text-align: center;
  font-weight: bold;
  font-family: Asap, sans-serif;
}

.choices {
  margin: 50px 0;
  text-align: center;
}

.games {
  margin-left: 20%;
  margin-right: 20%;
}

.choice {
  border: 4px solid white;
  border-radius: 50%;
  margin: 0 15px;
  padding: 20px;
  transition: all 1s ease;
}

.card {
  display: inline-block;
  margin-bottom: 20px;
}

.card > p {
  margin-top: 10px;
}

.choice:hover {
  cursor: pointer;
}

#action-message {
  text-align: center;
  color: white;
  font-family: Asap, sans-serif;
  font-weight: bold;
  font-size: 20px;
  margin-top: -20px;
}
