/* NAVIGATION */

nav {
  background: #146c43;
  padding: 5px;
  text-align: center;
  position: fixed;
  position: sticky;
  top: 0;
  z-index: 999;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

nav a:hover {
  color: #d9ffe7;
}

@media (max-width: 768px) {
  .nav-logo {
    position: static;
    display: block;
    margin: 0 auto 10px auto;
    transform: none;
  }

  nav {
    text-align: center;
  }

  nav a {
    display: inline-block;
    margin: 8px 10px;
  }
}
