body {
  font-family: 'Times New Roman', Times, serif
}


h2 {
  text-wrap: wrap;
  margin-top: 140px;
}

h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: 12px;
  margin-bottom: 10px
}

h1 img {
  max-width: 200px;
  height: auto;
  margin: 0;
  padding: 0;
}

h3 {
  text-wrap: none;
  text-align: center;
  top: 4px;
  font-size: 30px;
  text-decoration: underline;
  color: #2a788e;
}


nav {
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0px;
  background-color: #2a788e;
  padding: 5px 0;
  display: flex;
  font-size: 24px;
  gap: 60px;
  margin-bottom: 30px
}

nav a {
  text-decoration: none;
  font-weight: bolder;
  color: #ffffff;
  background-color: #2a788e;
  border: 2px solid #2a788e;
  padding: 18px 38px;
  display: inline-block;
  transition: 0.3s;
}

#nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  background-color: #2a788e;
  padding:10px 0;
}

.hamburger {
  display: none;
}


@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    align-items: center;

  h2 {
    margin-bottom: 20px;
  }
    
  }
  .hamburger {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    color: #2a788e;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
  }

  .hamburger.rotate {
    transform: rotate(90deg)
  }
  
  #nav-links {
    text-wrap: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #2a788e;
    flex-direction: column;
    align-items: flex-end;
    padding: 10px;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
    border-radius: 6px;
  }

  #nav-links.show {
    display: flex;
    opacity: 1;
    text-decoration: none;
  }

  #nav-links a {
    padding: 8px 12px;
    color: white;
    background-color: #2a788e;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  #nav-links a:hover {
    background-color: white;
    color: #2a788e;
    border-radius: 6px;
  }
}









nav a:hover {
  background-color: #ffffff;
  color: #2a788e;
}

sub {
  font-size: 25px;
  font-weight: bold;
}

p {
  text-indent: 2em;
  text-align: left;
}