
body {
    background: #470505;
}

	/* 버튼 스타일 */
   .map-buttons a {
    padding: 10px 20px;
    background-color: #2ec0c0; /* 버튼 배경색 */
    color: #000000; /* 버튼 텍스트 색 */
    border-radius: 5px;
    text-decoration: none; /* 밑줄 제거 */
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
	font-size: 10px;
    }

   


/*****************************************************************************************************/	
	/*하단 맵 */

	/* 지도 컨테이너 */
.map {
    display: flex;
    flex-direction: column;
    align-items: center; /* 중앙 정렬 */
    
	margin-top:20px; /* 위쪽 여백 60px */
}

/* 버튼 컨테이너 */
.map-buttons {
    display: flex;
    justify-content: center; /* 버튼들 중앙 정렬 */
    gap: 10px; /* 버튼 간격 */
    margin-top: 20px;
}

/* 버튼 스타일 */
.map-buttons a {
    padding: 10px 20px;
    background-color: #0be0e0; /* 버튼 배경색 */
    color: #000000; /* 버튼 텍스트 색 */
    border-radius: 5px;
    text-decoration: none; /* 밑줄 제거 */
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

/* 버튼 hover 효과 */
.map-buttons a:hover {
    background-color: #f4c700;
}

/*Mobile Devices*/
@media only screen and (max-width:767px){
	.map {
		display: none;
	}
}
	
