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

header {
    width: 100vw;
    height: 100px;
    background-color: #FFFFFF;
    padding: 20px 40px;
    box-shadow: inset -3px -5px 10px #2f2e4113;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    top: 0%;
    left: 0%;
    z-index: 9999;
}
nav {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;

}

header a {
    text-decoration: none;
    font-size: 1rem;
    color: #2F2E41;
}
/*header li:last-child {
    color: #2F2E41;*/

header a:hover {
    color: #EDCB96;
}

header a:active {
    color: #2F2E41;
}

nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.show-hidden {
    display: none;
    font-size: 2em;
    text-align: right;
}

.navItems {
    border: 1px solid transparent;
    border-radius: 30px;
    padding: 20px;
    margin-right: 10px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navItems:active {
    background-color: #EDCB96;
}

header li:last-child {
    background-color: #edcc9649;
}

@media screen and (max-width: 500px) {
    header {
        
        padding: 0%;
        margin: 0%;
        height: 10vh;
    }
    nav ul{
        display: none;
    }

    .show-hidden {
        display: unset;
        margin: 5%;
    }
}