   body {
            background-color: #F6CEF5;
            font-size: 2em
        }

        p {
            color: #FFFFFF
        }

        body {
     
            background-position: left top;
            background-size: 100%;
            background-repeat: no-repeat;
        }

        .btn-link {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            padding: 8px 16px;
            margin: 5px;
            border-radius: 50px;
            /* 丸みのあるデザイン */
            font-size: 24px;
            font-weight: bold;
            transition: 0.3s;
            /* 変化を滑らかに */
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .btn-link:hover {
            opacity: 0.8;
            transform: translateY(-2px);
            /* 少し浮き上がる演出 */
        }

        #button:active {
            transform: scale(1.5);
            /* クリック時に拡大 */
            transition: transform 0.2s ease-in-out;
        }

        .nav-button {
            /* 基本の形 */
            position: fixed;
            width: 220px;
            height: 70px;
            top: 300px;

            /* 文字のデザイン */
            font-size: 24px;
            font-weight: bold;
            color: white;

            /* 装飾 */
            border: none;
            border-radius: 50px;
            /* 丸みをつけて柔らかく */
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            /* 軽い影 */
            transition: all 0.3s ease;
            /* 動きをなめらかに */
        }

        /* 個別の配置と色 */
        .beach {
            left: 100px;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            /* 海っぽいグラデ */
        }

        .chapel {
            left: 420px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            /* 神秘的なグラデ */
        }

        /* マウスを乗せた時の動き (ホバー効果) */
        .nav-button:hover {
            transform: translateY(-5px);
            /* 少し上に浮く */
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            /* 影を強く */
            filter: brightness(1.1);
            /* 少し明るく */
        }