body {
    font-family: "Arial", sans-serif;
    text-align: center;
    background-color: #a8d5a8; /* 草原っぽい背景色 */
    margin: 0;
    padding: 0;
}

#ゲームコンテナ {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

h1 {
    font-size: 2rem;
    color: #006400; /* 濃い緑 */
}

button {
    font-size: 1.5rem;
    padding: 10px 20px;
    background-color: #32cd32; /* 明るい緑 */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #228b22; /* もう少し濃い緑 */
}

#ゲームエリア {
    width: 100%;
    height: 300px;
    margin: 20px auto;
    background-color: #98fb98; /* 草原のイメージ */
    position: relative;
    overflow: hidden;
    border: 2px solid #006400;
    border-radius: 10px;
}

img.ウサギ {
    position: absolute;
    width: 60px;
    height: auto;
    cursor: pointer;
    animation: ユレル 1s ease-in-out infinite;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

img.ジャンプ {
    transform: translate(200px, -150px) rotate(720deg); /* 大きく右上に移動＆回転 */
    opacity: 0; /* 徐々に透明になる */
}

@keyframes ユレル {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

#スコア, #タイマー {
    font-size: 1.5rem;
    color: #228b22;
}
