<!DOCTYPE html>
<html lang="ko">
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0"><meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Lake the Hill</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>ㅅㄷ
        <h1>Lake the Hill</h1>
        <nav>
            <ul>
                <li><a href="index.html">홈</a></li>
                <li><a href="project.html">프로젝트 소개</a></li>
                <li><a href="gallery.html">갤러리</a></li>
                <li><a href="location.html">위치 안내</a></li>
                <li><a href="contact.html">연락처</a></li>
            </ul>
        </nav>
    </header>
    <main>
        <section class="hero">
            <h2>자연 속의 럭셔리 라이프</h2>
            <p>광교 호수 공원에서 만나는 새로운 삶의 방식</p>
        </section>
        <section>
            <h3>프로젝트 개요</h3>
            <p>Lake the Hill은 광교 호수 공원의 중심에 위치한 고급 주거 단지입니다.</p>
            <a href="project.html">더 알아보기</a>
        </section>
    </main>
    <footer>
        <p>&copy; 2024 Lake the Hill. All rights reserved.</p>
    </footer>
</body>
</html>@media (max-width: 600px) {
    nav ul {
        display: block;
        text-align: left;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .hero h2 {
        font-size: 2em;
    }

    .gallery img {
        width: 100%;
        margin-bottom: 10px;
    }
}