body {
  margin: auto;
  background-color: #ffffff;
  color: #000000;
  font-size: 14px;
  font-family: Times, "Times New Roman", Georgia, serif, "Dancing Script";
}

.site-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 2px 20px;
  background-color: #f8f8f8;
  border-bottom: 2px solid #6a0dad;
  top: 0;
  z-index: 1000;
}

.logo-container img {
  height: 180px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #6a0dad;
  background: none;
  border: none;
  cursor: pointer;
}

/* Center nav bar */
.topnav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.topnav a {
  color: #6a0dad;
  padding: 2px 24px;
  text-decoration: none;
  font-family: "Dancing Script", cursive;
  font-size: 120%;
  font-weight: bold;
  white-space: nowrap;
  text-transform: uppercase;
  border-left: 2px solid #6a0dad;
}

.topnav a:hover,
a:focus {
  background-color: #6a0dad;
  color: white;
}

.topnav .active {
  background-color: #6a0dad;
  color: white;
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .topnav {
    position: static;
    transform: none;
    width: 100%;
    flex-direction: column;
    display: none;
  }

  .topnav.show {
    display: flex;
  }

  .topnav a {
    padding: 6px 0;
    width: 100%;
    border-left: none;
    border-bottom: 1px solid #ccc;
  }

  .site-banner {
    flex-direction: column;
    align-items: center;
  }
}

/* Remove left border from first nav link */
.topnav a:first-child {
  border-left: none;
}

.image-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

img.responsive-img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 600px) {
  img.responsive-img {
    max-width: 80%;
  }
}

@media (min-width: 992px) {
  img.responsive-img {
    max-width: 70%;
  }
}

@media (min-width: 1200px) {
  img.responsive-img {
    max-width: 60%;
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #f8f8f8;
  border-top: 2px solid #6a0dad;
}

footer a {
  margin: 0 10px;
  color: #6a0dad;
  text-decoration: none;
  font-weight: bold;
}

/* Contact form */
main.contact-main {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

main.contact-main h2 {
  color: #6a0dad;
}

main.contact-main form {
  margin-top: 20px;
}

main.contact-main input,
main.contact-main textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

main.contact-main button {
  background-color: #6a0dad;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}
