body {
  font-family: "Arial", sans-serif;
  background-color: #fae5d3;
  overflow: hidden;
}

.score {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  z-index: 10;
}

.game-container {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.plate {
  position: absolute;
  bottom: 250px; /* 이 값을 변경하여 위치 조정 */
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  cursor: grab;
  margin-left: 20px;
}
