
 
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.topnav {
  background-color: #FFF8F0;
  overflow: hidden;
    display: none;
}


::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #03989E; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #03989E; 
}


.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}


 .nav-link {
  text-decoration: none;
  font-size: 25px;
  color: #039891;
  font-family: Arial, Helvetica, sans-serif;
 }

 .navbar-nav {
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24)
 }

 .navbar-nav:hover {
  box-shadow:  0 17px 50px 0 rgba(0,0,0,0.19);;;
 }

 #navbar {
  overflow: hidden;
  background-color:#FFF8F0;
}

#navbar a {
  float: left;
  display: block;
  color: #03989E;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 30px;
  padding-top: 20px;
}

#navbar a:hover {
  background-color: #039891;
  color: #FFF8F0;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .content {
  padding-top: 60px;
}

