ul{list-style: none;} /* 리스트 앞에 . 제거*/
li{list-style: none;}
a{text-decoration: none;} /* 링크에 밑줄 제거*/

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

header{
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 125px;
  background-color: #FF94A4;
  z-index: 1000;
  display: flex;
  justify-content: space-between; /* .logo와 #main-navigation 사이에 공간을 분배 */
  align-items: center; /* 수직 가운데 정렬 */
  padding: 0 20px; /* 좌우 여백 추가 */
}

.logo{
  width: 150px;
  margin-left: 30px;
}

#main-navigation {
  display: flex; /* flexbox 적용 */
  justify-content: center; /* 메뉴 항목들을 수평으로 정렬 */
  align-items: center; /* 메뉴 항목들을 수직으로 정렬 */
  height: 100%;
  width: 800px;
  margin-bottom: 10px;
  margin-right:50px;
}
        
.outer-menu-item {
/* 메뉴바 우측정렬 */
  display: flex;
  width: 135px;
  height: 65px;
  align-items: center; 
  justify-content: center;
  margin-top: 15px;
  margin-right: 10px;
  float: right;  
  position: relative;
  color:white;
  font-family: 'EF_hyunydororong', Arial, sans-serif;
  font-size: 20px;
}      

.outer-menu-item:hover .inner-menu {
display: block;
}

.outer-menu-item:hover {
background: #FFB7C2;
color: white
}

.menu-title {
  display: block;
  height: 30px; line-height: 30px;
  text-align: center;
  padding: 5px 20px;
}

* {
  box-sizing: content-box; /*  설정한 width와 height 값이 곧 요소 내부의 콘텐츠 크기 */
}

ul {
  list-style-position: inside;
  padding-left: 0;
}

.inner-menu {
display: none;
position: absolute;
background: #ff4a65;
color: white;
z-index: 1200;
text-align: left;
left: 0; 
top: 100%;
width: 100%;
margin:0; padding:0;
}

/* inner-menu-item 기본 스타일 */
.inner-menu-item > a {
display: block;
width: 100%;
padding: 5px 0;
height: 40px;
line-height: 30px;
text-align: center;
align-items: center; 
justify-content: center;
background-color: #fbeec8;
color: #FF94A4;
}

/* inner-menu-item hover 시 스타일 */
.inner-menu-item > a:hover {
background:#FF94A4;
color: white;
}

footer{
  position: relative;
  height: 290px;
  background-color: #FF94A4;
}

.logo2{
    position: absolute;
    width: 90px;
    left: 60px; top:50px;
}


.footer-text{
    position: absolute;
    font-size: 13px; text-align: left;
    left:60px; top: 120px;
    color: white;
}

.footer-text2{
    position: absolute;
    font-size: 14.5px; text-align: left;
    left:60px; top: 145px;
    color: white;
}

.sns_container {
  position: absolute;
  right: 80px;
  top: 55px;
  display: flex;
  gap: 30px;
}
.sns_container img {
  width: 26px;
  height: auto;
  object-fit: contain;
}