/* -- HEADER -- */
nav {
  background-color: var(--background-color);
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;

}
#img-s {
  display: block;
}
#img-w {
  display: none;
}
.fa {
font-size: 20pt;
}
.nav-links {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0;
width: 20%;
height: 5vh;
margin-right: 50px;
}
.nav-links a {
text-decoration: none;
color: #333;
font-size: 24pt;
}
.nav-links a:hover {
color: var(--hover-color);
}
.logo {
width: 150px;
height: auto;
padding: 10px;
margin-left: 50px;
}
img {
  width: 100%;
  height: auto;
  padding: 0;
  margin-bottom: 0;
}
.resp-nav-links {
display: none;
flex-direction: column;
justify-content: space-between;
align-items: center;
padding: 0;
margin-right: 20px;
margin-bottom: 100px;
width: 100%;
height: 5vh;
}
.resp-nav-links a {
text-decoration: none;
color: #333;
font-size: 16pt;
padding: 3px;
}

/* Style the navigation menu */
.topnav {
    overflow: hidden;
    background-color:white;
    position: relative;
    display: none; /* Hide by default */
  }
  
  /* Hide the links inside the navigation menu (except for logo/home) */
#myLinks {
    display: none;
    position: relative;
    top: 5vh;
  }
  
  /* Style navigation menu links */
  .topnav a {
    color: black;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
    display: block;
  }
  
  /* Style the hamburger menu */
  .topnav a.icon {
    background: white;
    display: block;
    
  }

#active a {
  color: var(--active-color);
}