body {
  text-align: center;
  position: relative; /* ボタン配置の基準にする */
  overflow: hidden; /* スクロールバーを隠す */
}

canvas {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
}

.controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%; /* 画面幅に対する割合で指定 */
  max-width: 500px; /* 最大幅は維持 */
  display: flex;
  justify-content: space-between; /* 양쪽 끝으로 분배 */
}

.controls button {
  width: 120px; /* 少し大きく */
  height: 120px;
  font-size: 60px; /* フォントも大きく */
  background-color: rgba(0, 150, 221, 0.6); /* 少し透明に */
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.controls button:active {
    background-color: rgba(0, 120, 180, 0.8);
}