.navigation-menu {
   display: flex;
   flex-direction: row;
   justify-content: start;
   width: 100%;

    position: relative;

    color: teal;
    font-weight: 700;
    column-gap: 2vw; 

    padding: 0px;
    background: none;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;

    margin-bottom: 50px;
}

.navigation-menu a {
    font-size: 20px;
    color: teal;
    font-weight: 700;
    text-decoration: none;

    background: none;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 5px;

    display: flex;
    justify-content: center;
    flex: 1;
    column-gap: 2vw; 
    padding: 2px 2px 2px 1px;
    margin: 4px 3px 4px 0px;
    transition: 0.15s;
}

.navigation-menu a:hover {
    background-color: rgb(243, 243, 243);
    transform: translateY(-2px);
}
