h1 {
  background-color: cornflowerblue;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
#stats {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
button {
  background-color: dodgerblue;
  padding: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  color: black
}
#player-odds{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#numbers {
  display: inline-flex;
  gap: 2px;
}

#numbers > * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  border: 1px solid black;
  border-radius: 50%;
}
#numbers > *:last-child {
  border-color: darkred;
  background-color: red;
  color: white
}
