header {
    display: flex;
    align-items: center;
    padding: 8px 25px;
    white-space: nowrap;
    min-height: 70px;
    max-height: 70px;
    box-sizing: border-box;
    height: 70px;
}

#logo {
    font-family: 'Dancing Script', cursive;
    font-size: 30px;
    user-select: none;
    text-decoration: none;
    color: black;
}

@media (min-width: 800px) {
    header {
        justify-content: space-between;
    }
    #menu-button {
        display: none;
    }
    #menu {
        display: flex;
    }
}

@media (max-width: 799px) {
    header {
        justify-content: space-between;
    }
    #menu-button {
        display: flex;
    }
    #menu {
        visibility: hidden;
        max-height: 0px;
        width: 0px;
        height: 30px;
        transition: height 0.3s ease-in-out;
        overflow: hidden;
    }
    .opened {
        display: block !important;
        position: absolute;
        top: 70px;
        z-index: 2;
        background: white;
        left: 0;
        right: 0;
        padding: 10px 0;
        text-align: center;
        width: auto !important;
        height: 170px !important;
        max-height: 170px !important;
        visibility: visible !important;
    }
    .opened .menu-item {
        margin: 10px 0;
    }
}

#menu-button {
    cursor: pointer;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    user-select: none;
}

#menu-button-image {
    width: 32px;
    height: 32px;
}

#menu-button:hover {
    background-color: #f3f3f3;
}

#menu {
    list-style: none;
    font-size: 18px;
    user-select: none;
    margin: 0;
}

.menu-item {
    margin-right: 25px;
}

.menu-link {
    text-decoration: none;
    color: black;
    text-transform: capitalize;
}

.menu-link:hover, .active {
    text-decoration: underline;
    text-decoration-color: #64748B;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}