body {
  font-family: comic neue;
}

.menuitem {
  max-width: 200px;
}

.active {
  font-weight: bold;
}

.topnav {
  overflow: hidden;
  background-color: antiquewhite;
}

.topnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  font-size: 16px;
}

.topnav a:hover {
  background-color: white;
  color: black;
}

.logo {
  max-width: 99%;
}

.topnav input[type=text] {
  float: right;
  padding: 6px;
  border: none;
  margin-top: 8px;
  margin-right: 16px;
  font-size: 16px;
}

@media screen and (max-width: 600px) {
  .topnav a, .topnav input[type=text] {
    float: none;
    display: inline-block;
  }

  .topnav input[type=text] {
    display: none;
  }
}

footer {
  background-color: antiquewhite;
  overflow: hidden;
  text-align: center;
  padding: 14px 16px; /* Adjust padding as needed */
  position: fixed;
  width: calc(100% - 32px); /* Subtracting 32px (16px padding on each side) */
  bottom: 0;
  left: 0; /* Align to the left edge */
}

footer p {
  margin: 0;
  font-size: 16px;
  color: black;
}

@media screen and (max-width: 600px) {
  footer p {
    padding: 13px; /* Adjust padding as needed */
  }
}
