@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");

body {
  font-family: "Press Start 2P", cursive;
  text-align: center;
  color: #f0a8d0;
  margin-top: 30px;
  font-size: 14px;
  background-color: #ffe6e6;
}

#board {
  background-color: #ffebd4;
  border-bottom: 10px solid #f7b5ca;
}

.reset-button {
  margin-top: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: transform 0.2s;
}

.reset-button:hover {
  transform: scale(1.1);
}
