html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    overflow: hidden;
  }
  
canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* スタートメニューとゲームオーバー画面のスタイル */
#menuOverlay {
    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: 100;
}
#menuOverlay h1 {
    font-size: 50px;
    margin-bottom: 10px;
}
#finalScore {
    font-size: 24px;
    margin: 0 0 20px 0;
    display: none; /* 最初は非表示 */
}
#menuOverlay button {
    font-size: 24px;
    padding: 10px 30px;
    cursor: pointer;
    border: 2px solid white;
    background-color: transparent;
    color: white;
    transition: background-color 0.2s, color 0.2s; /* ホバー効果を滑らかに */
}
#menuOverlay button:hover {
    background-color: white;
    color: black;
}