#navbar{
    display: flex;
    border: 4px;
    border-style: none none outset none;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 10;

    position:fixed;
    top:0;
    left:0;
    width: 100%;
}

.navbar-item{
    font-size: 1.2em;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-decoration: none;
    color: rgb(0,0,0);

    padding: 0.5em;

    z-index: 10;
}

.navbar-item:hover{
    box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.4);

    z-index: 11;
    outline: 4px solid;
    outline-color: aliceblue;

}

body{
    margin-top: 5%;
}