.header {
    width: 100%;
    padding-top: 14px;
    padding-bottom: 8px;

    border-bottom: 1px solid var(--page-color);
}

.header-logo-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    position: relative;
}

.header svg {
    fill: var(--page-color);
}

.header-logo {
    width: 100px;
}

/*Menu*/
.header-menu[data-open="false"] {
    display: none;
}

.header-menu[data-open="true"] {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70%;
    right: 0;
    width: 40%;

    color: var(--prune-950);
    background-color: var(--parme-200);
    box-shadow: 0 2px 4px black;
    border-radius: 8px;
}

.header-menu li {
    display: flex;
    flex-wrap: wrap;

    list-style-type: none;
}

.header-menu-toggle {
    padding: 6px;
    border: var(--page-color) 1px solid;
    color: var(--page-color);
    border-radius: 8px;

    cursor: pointer;
}

@media only screen and (min-width: 640px) and (min-height: 500px) {
    .header-menu-toggle {
        display: none;
    }

    .header-menu[data-open="false"],
    .header-menu[data-open="true"] {
        display: flex;
        flex-direction: row;
        gap: 16px;
        width: 100%;
        margin: 0;
    }

    .header-menu > li {
        padding: 6px;
        cursor: pointer;
    }

    .header-menu > li:nth-child(2) {
        color: var(--prune-950);
        background-color: var(--parme-200);
        border: solid 1px var(--prune-950);
        border-radius: 6px;
    }

    .header-menu > li > a:nth-child(1):hover {
        text-decoration: underline;
    }
}
