header {
    max-width: 480px;
    min-width: 270px;
    margin: auto;
}

.header {
    height: 140px;
    width: 100%;
    align-items: center;
    overflow: visible;
    position: relative;
}

.header-logo {
    height: 100%;
    width: 200px;
    display: block flex;
    align-items: center;
    margin-left: 20px;
}

.header-logo svg {
    width: 100%;
    height: 100%;
}

.headerButton {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    top: 50px;
    right: 20px;
    z-index: 10;
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 50px;
}

.headerButton.active{
    backdrop-filter: blur(0);
}

.headerButton span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #381a0b;
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease;
}

.headerButton span:nth-child(1) {
    top: 0;
}

.headerButton span:nth-child(2) {
    margin: 8px 0px;
}

.headerButton span:nth-child(3) {
    top: 0;
}

.headerMenu {
    position: fixed;
    max-width: 480px;
    min-width: 270px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 140px;
    padding-bottom: 50px;
    top: 0;
    margin: auto;
    z-index: 5;
    backdrop-filter: blur(10px) ;
    border-bottom: #381a0b 2px solid;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-20px);
    transition: all 0.3s ease;
}

.headerMenu.active {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
    transition: all 0.3s ease;
}

.headerMenu ul {
    list-style: none;
    padding-left: 30px;
}

.headerMenu a {
    text-decoration: none;
    color: #381a0b;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-shadow: 0px 0px 10px #fff;
    line-height: 150%;
}

.headerMenu li {
    margin: 20px 0px;
}

.headerButton.active {
    transform: translateX(0);
}

.headerButton.active span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.headerButton.active span:nth-child(2) {
    opacity: 0;
}

.headerButton.active span:nth-child(3) {
    top: -15px;
    transform: rotate(-45deg);
}
