@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

* {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 18px;
}

body {
    background-color: #fefaef !important;
}

#header-box ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

#header-box li {
    list-style: none;
}


#header-box {
    background-color: #582011;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 70px;

}

#footer-box {
    background-color: #582011;
    color: ivory;
    height: 150px;

}

.footer-p {
    font-size: 14px;

}

#footer-button {
    background-color: ivory;
    color: brown;
}


#guest-button {

    position: absolute;
    right: 20px;

    height: 40px;

    border: 1px solid #af8e86 !important;

    /* 화면 오른쪽에서 20px */
    background-color: #582011;
    /* 버튼 색상 */
    color: white;
    border: none;
    padding: 0px 20px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    /* 부드러운 애니메이션 효과 */
    z-index: 100;
    /* 다른 요소 위에 배치 */
    margin-right: 200px;
    margin-top: -20px;
}

#guest-button:hover {
    background-color: #7a2f16;
    /* 마우스 올렸을 때 색 변경 */
    transform: scale(1.1);
    /* 버튼 크기 1.1배 확대 */
}