@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');


*{
    margin:0; 
    padding:0;
    border:0;
}

a {
    text-decoration: none;
    color: inherit; /* 부모 요소의 글자색을 따라감 */
    cursor: pointer;
    display: inline-block;

}


.body{
    width:100%;
    height:100%;
    font-family: "Noto Sans", sans-serif;
    overflow-x: scroll;  
}


.nav-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background:transparent;/* 투명한 배경 */
    align-items: center;
    padding: 1rem 0;
    z-index: 10;
}

.nav-item {
    font-family: "Noto Sans", sans-serif;
    font-size:20px;
    font-weight:400;
    text-align: center;
    white-space: nowrap;
    padding: 0.5rem 1rem;
  
    
}


.center-text-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 6rem;
    box-sizing: border-box;
}
.center-text {
    text-align: center;
    flex: 1;
}
.left-text {
    text-align: left;
    flex: 1;
}
.right-text {
    text-align: right;
    flex: 1;
    cursor: pointer;
}
