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

.main-container {
  background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS9YZ_28FKHT5RlBxv2EfNySdA1pouBvyuhUA&s");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.highest-score,
.score {
  background-color: black;
  width: 400px;
  padding: 5px;
  border-radius: 10px;
  color: white;
  text-align: center;
  font-weight: bold;
  font-family: sans-serif;
  margin: 5px auto;
}

.board {
  background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSDZAcWoiJyAvPkOozyFsV8ce1Y-9TZPn58Mw&s);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: 10px solid #333333;
  width: 400px;
  height: 70vh;
  border-radius: 10px;
  /* background: linear-gradient(#c5f051, #fdfd78); */
  display: grid;
  grid-template-rows: repeat(18, 1fr);
  grid-template-columns: repeat(18, 1fr);
}

.head {
  background: linear-gradient(rgb(240, 124, 124), rgb(228, 228, 129));
  border: 2px solid rgb(34, 4, 34);
  transform: scale(1.02);
  border-radius: 9px;
}

.tail {
  background: linear-gradient(rgb(223, 82, 82), rgb(241, 241, 67));
  border: 1.5px solid #252525;
  border-radius: 12px;
}

.food {
  background: linear-gradient(#ff0000, #800080);
  border: 1px solid #000000;
  border-radius: 8px;
}
