body {
  margin: 0;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background-color: #ff80bf;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  color: white;
}

#game-container {
  position: relative;
  width: 100%;
  height: 80vh;
  background-color: #ffcccc;
  border: 2px solid #333;
  overflow: hidden;
}

#emoji {
  position: absolute;
  font-size: 40px;
  user-select: none;
}

#paddle {
  position: absolute;
  bottom: 20px;
  height: 20px;
  background-color: #333;
  border-radius: 10px;
  user-select: none;
}

#score {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
}

#start-screen,
#game-over {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 10;
}

#game-over {
  display: none;
}

#start-button,
#restart-button {
  padding: 10px 20px;
  font-size: 20px;
  background-color: #ff0000;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}
