
nav {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-content: center; /* horizontal */
    align-items: center; /* vertical */
    z-index: 10000;
    
    background-color: rgba(250, 247, 247, 0.9);
      backdrop-filter: blur(12px);
}

#nav-wrapper {
    display: flex;
    flex-direction: row;

    justify-content: space-between;

    width: 100%;
    margin: 0 100px 0 100px;
    align-items: center; /* vertical */
    /* background-color: aquamarine; */
}

#nav-wrapper div {
    position: static;
    top: 0;
    display: flex;
    flex-direction: row;
}

#work {
    margin-left: 80px;
}

 #about {
    position: relative;
    right: 0;
    margin-right: 80px;
    /* background-color: red; */
}

nav h1{
    font: 200 16px/1.0 "Inter", serif;
    padding: 0 0 0 0;
}

nav a {
    text-align: center;
    text-decoration: none;
    color:rgb(15 14 14);
    width: 150px;
    padding: 18px 0 18px 0;
}

nav a:hover { text-decoration: underline; }


footer {
    display: flex;
    bottom: 0;
}

footer p {
    display: flex;
    bottom: 0;
     font: 200 14px/1.0 "Inter", serif;
     padding: 10px 40px 12px 40px;
}

footer a {
    text-decoration: none;
    color:rgb(15 14 14);
    padding-left: 3px;
}

footer a:hover { text-decoration: underline; }



 /* Media Queries
--------------- */

 @media (max-width: 600px) {

#nav-wrapper {
    margin: 0;
    display: flex;
}

#work { margin-left: 0px; }

#nav-wrapper nav {
    margin: 0;
    padding: 0 10px 0 10px;
}


 }