body {
  background-color: black;
}
#snek-space {
  background-color: blue;
  border: 10px red solid;
  height: 500px;
  margin-top: 100px;
  position: relative;
}

#main-title {
  text-align: center;
  color: white;
}
#snake-head {
  position: relative;
  background-color: yellow;
  border: 1px black solid;
  width: 25px;
  height: 25px;
  left: 15px;
  top: 25px;
}
#death-message {
  display: none;
  color: red;
}
#snake-food {
  position:relative;
  background-color: red;
  width: 25px;
  height: 25px;
  left: 540px;
  top: 75px;
}
#snake-canvas {
  position: absolute;
  top: 0px;
  left: 0px;
}
#highscore-display {
  color: white;
  text-align: center;
}
