@charset "utf-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: inherit;
}
body{
    position: relative;
}
.header{
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0; /* 바디를 기준으로 움직여서 헤더가 숨는다. */
    left: 0;
    z-index: 99; /* 헤더 영역을 가장 앞으로 지정 */
    color: aliceblue;
}
.header .inner{
    width: 1280px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .inner .nav .gnb{
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.header .inner .util{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.main_visual{
    height: 100vh;
    position: relative; /* 메인비주얼 영역 기준 */
}
.main_visual img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main_visual .text{
    width: 1280px;
    position: absolute; /* 마진 0 오토가 먹히지 않아서 아래 top, left, transform 값으로 써준다. */
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    color: aliceblue;
    
}
