/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: Inconsolata;
    font-size: 12px;
    font-weight: 400;
    color: #333333;
    margin: 0;
    line-height: 1.2;
}

h1 {
  font-size: 16px;
  font-weight: 400;
  color: #000000;

}

h2 {
   font-size: 12px;
   font-weight: 600;
   color: #000000;
}

h3 {
   font-size: 10px;
   font-weight: 400;
   color: #000000;
}

p { 
  margin-top: 0; 
  margin-bottom: 0; 
}

p.bold {
  font-weight: 600;
}

/* body links */
a:link {
  color: #333333;  
  text-decoration: none;
}

a:visited {
  color: #333333;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  background-color: #ddf3a5;
  text-decoration: underline;
}

a:active {
  color: #333333;
  background-color: transparent;
  text-decoration: underline;
}

/* icons */

.fa-fish {
    color: #afe229;
  }

  .fa-star {
    color: #afe229;
  }

/* Navbar*/
.topnav {
  overflow: hidden;
  background-color: #f1f1f1;


}

.topnav a {
  float: left;
  display: block;
  color: #333333;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 12px;
}

.active {
  background-color: #afe229;
  color: white;
  line-height: 1.2;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 12px;    
  border: none;
  outline: none;
  color: #333333;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  line-height: 1.2;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
  background-color: #555;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }