* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  font-family: 'Comic Sans MS', cursive;
  background: #fceaff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
#game {
  display: grid;
  grid-template-columns: repeat(10, 35px);
  grid-template-rows: repeat(10, 35px);
  gap: 2px;
}
.cell {
  width: 35px;
  height: 35px;
  background-color: #fff0f5;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wall {
  background-color: #ffb6c1;
}
.player {
  font-size: 24px;
}
.goal {
  font-size: 22px;
}
#message {
  margin-top: 20px;
  font-size: 18px;
  color: #d6336c;
  text-align: center;
}
#controls {
  margin-top: 20px;
  text-align: center;
}
#controls button {
  font-size: 24px;
  padding: 10px;
  margin: 5px;
  border-radius: 10px;
  border: none;
  background: #ffb6c1;
  color: white;
  box-shadow: 2px 2px 5px #d48ca6;
}

