header-view {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 960px;
    width: 100vw;
    height: 80px;
    padding-left: calc((100vw - 960px) / 2);
    padding-right: calc((100vw - 960px) / 2);
    background-color: white;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
}

header-view img:first-child {
    display: block;
    height: 64px;
}

header-view img:last-child {
    display: none;
    height: 50px;
}

header-view nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    overflow: scroll;
    width: 100%;
    max-width: 100%;
    scrollbar-width: none;
}

header-view nav::-webkit-scrollbar {
    display: none;
}

header-view a {
    color: #73512E;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    text-wrap: nowrap;
}

header-view a:hover {
    color: #DA827D;
}

@media screen and (max-width: 1000px) {
    header-view {
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 720px) {
    header-view {
        height: 94px;
        flex-direction: column;
        gap: 12px;
        justify-content: center;
        align-items: center;
    }

    header-view img:first-child {
        display: none;
    }

    header-view img:last-child {
        display: block;
    }

    header-view nav {
        gap: 16px;
        justify-content: flex-start;
    }
}