@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@500&family=Edu+NSW+ACT+Foundation&family=Edu+SA+Beginner:wght@500&family=Edu+TAS+Beginner:wght@600&display=swap');
* {
  padding: 0;
  margin: 0;
}

.body {
  background: url("../background.jpg");
  min-height: 100vh;
  background-size: 100vw 100vh;
  background-repeat: no-repeat;
  display: flex;
  /* position: relative; */
  justify-content: center;
  align-items: center;
}

#board {
  background: rgb(38, 35, 35);
  width: 90vmin;
  height: 90vmin;
  border: 5px solid white;
  display: grid;
  grid-template-rows: repeat(18, 1fr);
  grid-template-columns: repeat(18, 1fr);
}

.head {
  background-color: red;
  border-radius: 4px;
}

.snake {
  background-color: yellow;
  border-radius: 4px;
}

.food {
  background-color: blue;
  border-radius: 4px;
}

#scoreBox
{
    font-family: 'Baloo Bhai 2', cursive;
    position: absolute;
    top:47px;
    right: 236px;
    font-size: 39px;
    font-weight: 100px;
    color: white;

}

#hiscoreBox
{
    font-family: 'Baloo Bhai 2', cursive;
    position: absolute;
    top:90px;
    right: 145px;
    font-size: 39px;
    font-weight: 100px;
    color: white;

}

#play
{
    font-family: 'Baloo Bhai 2', cursive;
    position: absolute;
    top:133px;
    right: 200px;
    font-size: 39px;
    font-weight: 100px;
    color: white;

}

button{
  padding:  10px 25px;
  font-size: 22px;
  line-height: 40px;
  min-width: 150px;
  text-align: center;
  cursor: pointer;
  background: linear-gradient(green,white
  );
  border: 2px solid black;
  border-radius: 5px;
}