
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000000;
}

nav {
  background-color: transparent;
  padding: 10px 20px;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}

.nav-desktop ul li a {
  text-decoration: none;
  color: teal;
  font-size: 12pt;
  font-family: Arial, Helvetica, sans-serif;
  padding: 6px 10px;
  transition: color 0.3s;
}

.nav-desktop ul li a:hover {
  color: grey;
}

.nav-desktop ul li a:active {
  color: white;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  align-items: flex-start;
}

.hamburger {
  font-size: 26px;
  background: none;
  border: none;
  color: teal;
  cursor: pointer;
}

.dropdown {
  display: none;
  flex-direction: column;
  background-color: #2C4A42;
  width: 100%;
}

.dropdown a {
  text-decoration: none;
  color: teal;
  padding: 10px;
  font-size: 12pt;
  font-family: Arial, Helvetica, sans-serif;
  border-top: 1px solid #4F6D55;
}

.dropdown a:hover {
  color: grey;
  background-color: #C94B3F;
}

.dropdown a:active {
  color: white;
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-mobile {
    display: flex;
  }
}
