* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100vh;
  width: 100%;
  background-color: #414141;
  display: flex;
  align-items: center;
  justify-content: center;
}

.board {
  height: 80vh;
  width: 80vh;
  border: 30px solid #60684c;
  border-radius: 10px;
  display: grid;
  grid-template-rows: repeat(20, 1fr);
  grid-template-columns: repeat(20, 1fr);
  background-color: #adb88e;
}

.snake {
  background-color: #757e5a;
  border: 4px solid #484d3c;
}

.body {
  background-color: #757e5a;
  border: 4px solid #484d3c;
}

.food {
  background-color: #484d3c;
  border: 4px solid #484d3c;
  border-radius: 50%;
}

.div {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 45%;
  left: 50%;
  height: 0px;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

h1 {
  width: 450px;
  font-size: 26px;
  bottom: -110px;
  text-align: center;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

img {
  height: 200px;
  width: 200px;
}

.game-container {
  border: 20px solid #4a4f3d;
  border-radius: 30px;
  position: relative;
}

.border {
  border: 15px solid #292c22;
  border-radius: 45px;
}

.p {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: white;
  font-weight: 800;
  position: absolute;
  top: 4px;
  left: 0px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0 30px;
  opacity: 0.8;
  font-size: 18px;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
