body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: aliceblue;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
}

p {
  width: 400px;
  line-height: 1.5;
}

#score-container {
    display: flex;
    justify-content: space-between;
    width: 400px;
    margin-bottom: 12px;
    font-weight: bold;
}

#game-board {
  position: relative;
  width: 400px;
  height: 400px;
  flex-shrink: 0;
  border: 1px solid #333;
  background-color: white;
  border-radius: 8px;
}

.snake {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #333;
}

.food {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #f00;
  border-radius: 100%;
}
