@charset "utf-8";

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



ul,
ol,
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #7c7163;
    font-size: 16px;
    font-weight:500;
}

body {

    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
        background-color: rgba(255, 247, 235, 0.2)

}

#top {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* 헤더 */
header {
    width: 100%;
    height: 162px;
    z-index: 3;
    /* background-color: brown; */
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

#logo {
    width: 162px;
    height: 162px;
}

#logo img {
    width: 100%;
}

nav {
    width: 100%;
    height: 30px;
    float: right;
    margin-top: -85px;

    /* background-color: aquamarine; */

}

nav ul:nth-of-type(1) {
    float: right;
}

nav ul:nth-of-type(2) {
    margin: 0 auto;
    width: 525px;
}

nav li {
    float: left;
    padding: 0 30px;
}

nav li a {
    font-weight: bold;
}

nav li a:hover {
    color: #3E290C;
}

/* 푸터 */
footer {
    width: 100%;
    height: 256px;
    background: #3E290C;
    margin: 0 auto;

}

#footer {
    width: 1400px;
    height: 100px;
    margin: 0 auto;
}

footer img {
    width: 162px;
    height: 162px;
    margin-top: 40px;
}

footer p {
    float: right;
    margin: 91px 30px 0 0;
    line-height: 48px;
    font-size: 24px;
    color: #F5DAAF;
    font-weight: 400;
}