<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* NAV */

/* Add a black background color to the top navigation */
.header {
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.topnav {
  width: 100%;
  overflow: hidden;
  background-color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 40px;
  position: sticky;
  z-index: 999;
}

/* Style the links inside the navigation bar */

.topnav a {
  font-family: "American Typewriter";
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 0px 16px;
  text-decoration: none;
  font-size: 17px;
}

.brand-name {
  font-family: 'Fira Mono';
  font-weight: 900;
  font-size: 3rem;
  color: white;
  text-align: left;
  padding-left: 56px;
  padding-top: 16px;
  margin: 0;
  box-sizing: border-box;
  line-height: 1;
}

/* Change the color of links on hover */

.topnav a:hover {
  border-bottom: 2px solid white;
}

.topnav a.icon:hover {
  border-bottom: none;
}

.socialMenu a {
  padding: 1px 20px;
}

/* Add an active class to highlight the current page */

.topnav a.active {
  font-family: "GT Super Txt Trial Md It";
  font-style: italic;
  font-weight: 900;
  font-size: 2.5rem;
  color: white;
  padding: 20px 5px;
}

/* Hide the link that should open and close the topnav on small screens */

.topnav .icon {
  display: none;
}

@media screen and (max-width: 992px) {
  .topnav {
    padding: 16px 40px;
  }
  .brand-name {
    font-size: 1.5rem;
    text-align: left;
  }
  .topnav a:not(:first-child) {
    display: none;
  }
  .topnav .socialMenu a {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 992px) {
  .topnav.responsive {
    position: relative;
    display: block;
    justify-content: unset;
  }

  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
    padding: 10px;
  }
  .socialMenu {
    flex-direction: row !important;
  }
}

/* END */
</pre></body></html>