body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7; /* 明るい背景色 */
  }
  
  .message-container {
    width: 350px;
    background-color: #c3e8f7; /* 明るい青色 */
    padding: 5px;  /* パディングを小さく */
    box-sizing: border-box;
    border-radius: 8px;  /* 少し丸みをつける */
    font-size: 20px;  /* 文字サイズを少し小さく */
    margin-top: 20px !important;  /* メッセージコンテナと画面上部に隙間を作る */
    display: inline-block; /* メッセージコンテナをインラインブロックに */
  }
  
  .message-container h1 {
    font-size: 24px;  /* h1タグの文字サイズも調整 */
    margin: 0; /* 余白を削除 */
  }
  
  .game-container {
    width: 350px;
    height: 500px;
    margin: 10px auto;
    position: relative;
    overflow: hidden;
    background-color: #e0f7fa; /* 明るい水色 */
    border: 2px solid #c3e8f7;
    border-radius: 10px;
  }
  
  .button-container {
    margin-top: 10px;
  }
  
  button {
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    background-color: #80c7e8; /* 明るい青色 */
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: white;
  }
  
  button:disabled {
    background-color: #ccc; /* 非活性時の色 */
    cursor: not-allowed;
  }
  
  /* Canvas background color */
  .game-container canvas {
    background-color: #e0f7fa !important;  /* 明るい水色 */
  }
  