body {
  font-family: 'Comic Sans MS', cursive;
  text-align: center;
  background: linear-gradient(to bottom, #ffe0f0, #fff);
  margin: 0;
  padding: 20px;
}

#board {
  display: grid;
  grid-template-columns: repeat(10, 50px);
  grid-template-rows: repeat(5, 50px);
  gap: 5px;
  margin: 20px auto;
  width: max-content;
}

.tile {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: pink;
  border: 2px solid #ccc;
}

.tile:nth-child(odd) {
  background-color: #ffccff;
}

.tile:nth-child(even) {
  background-color: #ccffff;
}

#player {
  width: 40px;
  height: 40px;
  background-color: red;
  border-radius: 50%;
  position: absolute;
  transition: all 0.3s ease;
  transform: translate(5px, 5px);
}

button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #ff66cc;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #ff66cc;
  border-radius: 50%;
  animation: fall 3s linear infinite;
  top: -10px;
  left: calc(100% * var(--x));
}
@keyframes
