body {
  margin: 0;
  padding: 0;
  background-color: #FFFB7B;
  color: white;
  /* use a wide and bold font */
  font-family: "Arial Black", Gadget, sans-serif;
}

/* give the text shadow */
h1 {
  text-align: center;
  font-size: 48px;
  text-shadow: 2px 2px 4px #000000;
}

/* the score also */
#score, #distance {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000000;
}

h1 {
  text-align: center;
  font-size: 48px;
}

canvas {
  display: block;
  margin: 50px auto;
  border: 1px solid black;
  background-color: #fff0d9;
  border-radius: 15px;
  /* give a glow */
  box-shadow: 0 0 20px #ff00008e;
}

#score, #distance {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

#restart {
  /* make this button in the center */
  display: block;
  margin: 25px auto;
  font-size: 24px;
  width: 200px;
  padding: 10px;
  font-family: "Arial Black", Gadget, sans-serif;
  border: none;
  border-radius: 15px;
  color: white;
  background-color: #CE4D4D;
} #restart:hover {
  background-color: #FF0000;
}

.stats{
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000000;
  display: flex;
  flex-direction: row;
}
.fpstext {
  margin-right: 10px;
}