body {
  font-family: 'Noto Serif', serif;
  margin: 0;
  padding: 0;
}

h1,h2,h3,h4 {
  margin: 0px;
}

h2 {
  font-size: 1.4em;
  font-style: italic;
  font-weight: 900;
  word-break: break-word;
}

p {
  font-size: 0.8em;
  margin: 0px;
}

.highlight {
  color: #1A9462;
  font-weight: 900;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  height: 70px;
}

.navbar-brand a {
  font-size: 1.8em;
  font-weight: 900;
  color: black;
  text-decoration: none;
}

.navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar-nav li {
  margin-left: 10px;
}

.navbar-nav a {
  color: black;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 400;
  transition: color 0.3s;
  padding: 5px;
  line-height: 0.9em;
}

.navbar-nav a:hover {
  color: green;
}

.navbar-nav .current {
  font-weight: 800;
}

.navbar-nav .donate-button {
  background-color: #FFD862;
  padding: 5px 15px;
  font-weight: bold;
  border-radius: 16px;
}

.navbar-nav .donate-button:hover {
  background-color: #FFD862;
}

.navbar-nav-mobile {
  display: none;
}

@media (max-width: 1150px) {
  .navbar {
    height: 50px;
  }

  .navbar-brand a {
    font-size: 1.4em;
  }

  .navbar-nav a {
    font-size: 0.8em;
  }
}

@media (max-width: 700px) {
  .navbar {
    height: 35px;
    padding: 10px 20px;
  }

  .navbar-brand a {
    font-size: 1em;
  }

  .navbar-nav a {
    font-size: 0.5em;
  }
}

@media (max-width: 550px) {
  .navbar-nav {
    background-color: white;
    display: none;
    left: 0px;
    list-style: none;
    overflow: hidden;
    position: absolute;
    top: 55px;
    width: 100%;
  }

  .navbar-nav.open {
    display: flex;
    flex-direction: column;
  }

  .navbar-nav li {
    border-bottom: 1px solid #ccc;
    display: block;
    margin-left: 0px;
    text-align: center;
  }

  .navbar-nav a {
    display: block;
    line-height: 30px;
  }

  .navbar-nav .donate-button {
    background-color: white;
    font-weight: normal;
    text-decoration: underline;
  }

  .navbar-nav .donate-button:hover {
    background-color: white;
  }

  .navbar-nav-mobile {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: block;
    width: 50px;
    height: 30px;
  }

  .navbar-nav-mobile .nav-open {
    opacity: 1;
  }

  .navbar-nav-mobile span {
    display: block;
    width: 65%;
    margin: 5px auto;
    height: 1.5px;
    background: black
  }
}

footer .content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px;
}

footer .content a {
  text-decoration: none;
}

footer .copyright {
  background-color: #96DB9D;
  padding: 10px;
}
