body {
  font-family: 'Comic Sans MS', cursive;
  background-color: #FFF0F5;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%; /* Ensure full width */
  overflow: hidden; /* Prevent horizontal scrolling */
}

.container {
  text-align: center;
}

h1 {
  color: #FF69B4;
}

#game-canvas {
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  background-color: #FFFFFF;
}

.ui {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  font-size: 18px;
  color: #FF69B4;
}

.start-screen,
.game-over-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.start-screen.show,
.game-over-screen.show {
  display: flex;
}

.button {
  background-color: #FFB3BA;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 18px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.button:hover {
  background-color: #FF69B4;
  transform: scale(1.05);
}
