html, body {
    margin: 0;
    padding: 0;
}

.fullWebsiteNavbar {
    /*osition: fixed;*/
    display: flex;
    background-color: black;
    overflow: hidden;
    height: 30px;
    /*width: 100%;*/
/*    transform: translateY(-100%); /* Initially hidden */
    transition: transform 0.7s ease; /* Smooth slide down effect */
    z-index: 1000; /* Ensure it stays above other content */
  }
  .fullWebsiteNavbar a:not(.logo) {
    font-size:18px;  
    text-align: center;
    font-family: "Source Serif 4", serif;
    float: left;
    display: block;
    color: whitesmoke;
    padding: 2px 24px;
    text-decoration: none;
  }

.fullWebsiteNavbar a:not(.logo):hover {
    background-color: lightgray;
    color: black;
  }


