        body {
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            color: #b3cfdb;
        }
        .container {
            text-align: center;
            background: rgba(179, 207, 219, 0.4);
            padding: 20px;
            margin-top: 10px; /* 컨테이너 위에 10px 여백 추가 */
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            width: 90%;
        }
        .logo {
            max-width: 200px;
            margin-bottom: 20px;
            border-radius: 50%; /* 이미지를 원형으로 만듭니다 */
        }
        h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: #7b6d8d;
        }
        h2 {
            font-size: 1.5em;
            margin-bottom: 20px;
            color: #7b6d8d;
        }
        .link {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 10px 0;
            padding: 10px 20px;
            background-color: #7b6d8d;
            background: rgba(123,109,141, 0.4);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .link:hover {
            background-color: #5a4a6b;
        }
        .link img {
            width: 30px;
            height: 30px;
            margin-right: 10px;
        }
        .footer {
            margin-top: 20px;
            text-align: center;
            font-size: 0.8em;
            font-weight: bold;
            color: #111;
        }
        .footer {
            margin-top: 20px;
            text-align: center;
            font-size: 0.8em;
            color: #111;
        }
        hr {
            border: none;
            height: 2px;
            background-color: #7b6d8d;
            width: 95%;
            margin: 20px auto; /* 위 아래 여백을 20px로 설정 */
        }
        @media (max-width: 600px) {
            h1, h2 {
                font-size: 2em;
            }
            .link {
                padding: 8px 16px;
                font-size: 0.9em;
            }
            .link img {
                width: 25px;
                height: 25px;
            }
            hr {
                width: 90%; /* 작은 화면에서는 90%로 조정 */
            }
            .logo {
                max-width: 100%;
                border-radius: 0; /* 원형 border 제거 */
                content: url('../images/top2.png'); /* 모바일용 이미지 변경 */
            }
        }
        
        #mapContainer {
            width: 100%;
        }
        #daumRoughmapContainer1722006644615 {
            width: 100%;
            height: auto;
        }