html{
  scroll-behavior: smooth;
}

img{
    vertical-align: center;
}

/* header */

.header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    overflow: hidden;
}

.home {
    color: rgb(48, 66, 84);
    margin-left: 40px;
    font-weight: 700;
    transition: opacity .1s ease-out;
}

.home:hover {
    opacity: .7;
}

.nav {
    width: 100%;
    height: 50px;
    position: sticky;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.nav ul {
    display: flex;
}

.nav ul li {
    color: rgb(48, 66, 84);
    font-weight: 700;
    overflow: hidden;
    padding: 12px 16px;
    text-overflow: ellipsis;
    transition: opacity .1s ease-out;
}

.nav ul li:hover {
    opacity: .7;
}


/* footer */


.footer {
  width: 100%;
  background: linear-gradient(90deg, #5b2b6e, #1f2f5f);
  padding: 1% 3%;
  box-sizing: border-box;
}

/* 내부 컨테이너 */
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* 로고 */
.logo-area img{
    width: 80%;
}

/* 텍스트 영역 */
.info-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  color: #ffffff;
  font-size: 1rem;  /* 16px → rem */
}
