        * {
            box-sizing: border-box;
        }

        html, body {
            margin: 0;
            min-height: 100%;
        }

        body {
            font-family: Arial, sans-serif;
            color: #2d1f1f;
            background-image: url("background.jpg");
            background-repeat: no-repeat;
            background-position: center 35%;
            background-size: cover;
            background-attachment: fixed;
        }

        #wrapper {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            background-color: rgba(248, 245, 242, 0.25);
        }

        header {
            padding: 30px 30px 20px 30px;
        }

        .topbar {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
            flex-wrap: wrap;
        }

        .site-title {
            border: 1px solid #9c928b;
            background-color: rgba(239, 235, 231, 0.72);
            padding: 18px 22px;
            font-size: 2rem;
            letter-spacing: 1px;
            min-width: 260px;
            color: #2d1f1f;
            text-decoration: none;
            display: inline-block;
        }

        nav {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        nav a {
            text-decoration: none;
            color: #2d1f1f;
            border: 1px solid #b9b0aa;
            background-color: rgba(239, 235, 231, 0.72);
            padding: 16px 24px;
            font-size: 1.1rem;
        }

        nav a:hover {
            background-color: rgba(227, 216, 209, 0.95);
        }

        .intro-box {
            margin-top: 18px;
            max-width: 520px;
            border: 1px solid #b9b0aa;
            background-color: rgba(239, 235, 231, 0.72);
            padding: 18px 20px;
        }

        .intro-box h1 {
            margin: 0 0 10px 0;
            font-size: 1.5rem;
        }

        .intro-box p {
            margin: 0;
            line-height: 1.6;
        }

        main {
            padding: 0 30px 30px 30px;
        }

        .hero-story {
            display: flex;
            gap: 30px;
            align-items: stretch;
            margin-bottom: 25px;
        }

        .hero {
            flex: 1.5;
            min-height: 350px;
            border: 1px solid #b9b0aa;
            background-color: rgba(243, 239, 232, 0.68);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0;
            overflow: hidden;
        }
        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .story {
            flex: 1;
            border: 1px solid #b9b0aa;
            background-color: rgba(239, 235, 231, 0.72);
            padding: 35px 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
        }

        .story h2 {
            margin-top: 0;
            margin-bottom: 18px;
            font-size: 1.8rem;
        }

        .story p {
            margin: 0;
            line-height: 1.7;
        }

        .info-box,
        .map-box,
        footer {
            border: 1px solid #b9b0aa;
            background-color: rgba(239, 235, 231, 0.72);
            margin-bottom: 20px;
            padding: 28px 20px;
            text-align: center;
}

        .info-box h2,
        .map-box h2 {
            margin-top: 0;
            margin-bottom: 12px;
            font-size: 2rem;
        }

        .info-box p,
        .map-box p,
        footer p {
            margin: 8px 0;
            line-height: 1.6;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-top: 10px;
        }

        .footer-links a {
            color: #2d1f1f;
            text-decoration: none;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }



        /* tablet */
        @media only screen and (max-width: 900px) {
            #wrapper {
                width: 94%;
            }

            .topbar {
                flex-direction: column;
                align-items: stretch;
            }

            nav {
                justify-content: flex-start;
            }

            .hero-story {
                flex-direction: column;
            }

            .hero {
                min-height: 320px;
            }

            .story {
                text-align: left;
            }
        }


        /* smartphone */
        @media only screen and (max-width: 600px) {
            #wrapper {
                width: 100%;
            }

            header,
            main {
                padding-left: 15px;
                padding-right: 15px;
            }

            .site-title {
                font-size: 1.6rem;
                min-width: auto;
            }

            nav {
                flex-direction: column;
                gap: 10px;
            }

            nav a {
                width: 100%;
                text-align: center;
            }

            .intro-box {
                max-width: 100%;
            }

            .intro-box h1 {
                font-size: 1.25rem;
            }

            .hero {
                min-height: 240px;
                padding: 0;
            }

            .story,
            .info-box,
            .map-box,
            footer {
                padding: 20px 15px;
            }

            .info-box h2,
            .map-box h2 {
                font-size: 1.5rem;
            }
        }