.menu
{
    background-color: var(--footer);
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding: .5em;
    display: grid;
    grid-template-columns: 60%, 40%;
    color: var(--textareas-and-inputs);
    height: 4em;
    backdrop-filter: blur(10px);
}

.menu::after
{
    content: '';
    position: absolute;
    z-index: -1;
    width: 0%;
    height: .2em;
    left: 0;
    bottom: 0;
    transition: all ease 0.3s;
    background-color: var(--textareas-and-inputs-hover);
}

.menu:hover::after
{
    width: 100%;
    transition: all ease 0.3s;
}

.menuLeft
{
    grid-column: 1 / 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 15%;
}

.menuRight
{
    grid-column: 2/3;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-items: center;
    padding-right: 1em;
}

.menu-right *
{
    height: 100%;
    width: 15%;
}

/*******LINKS*******/
.menuLink
{
    color: var(--menu-links);
    padding: .4em 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.5s 0s ease-in-out;
}

.menuLink:active,
.menuLink:hover
{
    color: var(--menu-links-hover);
    transition: all 0.5s 0s ease-in-out;
}

.menuLink::after
{
    content: '';
    display: block;
    height: .1em;
    width: 0%;
    margin-top: .4em;
    margin-left: 50%;
    background-color: var(--menu-links-hover);
    transition: all 0.5s 0s ease-in-out;
}

.menuLink:active::after,
.menuLink:hover::after
{
    margin-left: -15%;
    width: 130%;
    transition: all 0.5s 0s ease-in-out;
}

.menuLinkClicked
{
    color: var(--menu-links-hover);
    padding: .4em 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.5s 0s ease-in-out;
}

.menuLinkClicked::after
{
    content: '';
    display: block;
    height: .1em;
    margin-top: .4em;
    margin-left: -15%;
    width: 130%;
    background-color: var(--textareas-and-inputs-hover);
}
/*******************/