* {
  padding: 0;
  margin: 0;
}

/* body {
  min-height: 100vh;
  background-size: 100vw 100vh;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
} */
.container{

  top: 100px;
  bottom: 100px;
  right: 200px;
  font-size: 39px;
  font-weight: bold;
  font-family: 'New Tegomin', serif;

}

#scoreBox{
  position: absolute;
  top: 40px;
  left:0px;
  font-size: 39px;
  font-weight: bold;
  font-family: 'New Tegomin', serif;
}

#hiscoreBox{
  position: absolute;
  top: 0px;
  left:0px;
  font-size: 39px;
  font-weight: bold;
  font-family: 'New Tegomin', serif;
}





#game-board {
  background: linear-gradient(rgb(170, 236, 170), rgb(236, 236, 167));
  width: 100vmin;
  height: 100vmin;
  border: 2px solid black;
  display: grid;
  grid-template-rows: repeat(15, 1fr);
  grid-template-columns: repeat(15, 1fr);
}

.snake {
  background-color: purple;
  border: .25vmin solid white;
  border-radius: 12px;
}

.food {
  background: linear-gradient(red, purple);
  border: .25vmin solid black;
  border-radius: 8px;
}

.p5Canvas {
  position: fixed;
  top: 0;
  right: 0;
}