body {
  background-color: #414141;
  font-family: "VT323", monospace;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#game-board {
  display: grid;
  grid-template-columns: repeat(20, 20px);
  grid-template-rows: repeat(20, 20px);
  background-color: #c4cfa3;
  border-radius: 20px;
  box-shadow: 0 0 20px #00000044;
}

.snake {
  background-color: #5a5a5a;
  border: 1px dotted #333;
}

.food {
  background-color: transparent;
  border: 5px solid #8f80cf;
  border-radius: 50%;
  animation: blink 0.5s infinite alternate;
}

@keyframes blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.3;
  }
}

#instruction-text {
  position: absolute;
  bottom: 25%;
  width: 300px;
  text-align: center;
  padding: 20px;
  color: #000;
}

.scores {
  position: absolute;
  display: flex;
  top: 20%;
  justify-content: space-between;
  width: 90%;
  max-width: 400px;
  color: #abb78a;
  font-size: 24px;
}

#score,
#highScore {
  font-size: 40px;
  font-weight: bold;
  margin: 10px;
}

#logo {
  position: absolute;
}

#logo img {
  width: 200px;
  height: auto;
}
