a,
a:visited,
a:hover {
  color: black;
}
body {
  font-family: "Hedvig Letter Serif", serif;
  background-color: white;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: space-between;
  font-family: "Metamorphous", serif;
}
header.show {
  display: flex;
}
header .logo {
  padding: 16px;
  display: inline-flex;
  align-items: center;
}
header .logo img {
  height: 50px;
  margin-right: 16px;
}
header nav {
  padding: 16px;
  gap: 16px;
}
header nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 18px;
  margin: 0 16px;
}
main {
  text-align: center;
  padding: 20px;
  margin-top: 80px;
}
main img {
  height: 140px;
}
main h1 {
  font-family: "Metamorphous", serif;
  font-size: 2rem;
  margin-bottom: 20px;
}
main p {
  font-size: 20px;
}
main p small {
  font-size: 16px;
  padding-bottom: 20px;
}
#mapCanvas {
  display: block;
  margin: 0 auto;
  width: 90%;
  max-width: 800px;
  height: 600px;
  background-color: #f0f0f0;
  overflow: hidden;
  position: relative;
  cursor: grab;
  border: 1px solid #ccc;
}
section {
  padding: 20px;
  text-align: center;
}
section h2 {
  font-family: "Metamorphous", serif;
  font-size: 36px;
  margin-bottom: 10px;
}
section {
  padding: 16px;
  margin: 16px auto;
}
section p {
  font-size: 18px;
  margin-bottom: 20px;
}
section button {
  font-size: 18px;
  padding: 10px 20px;
  border: none;
  background-color: #1a1a1a;
  color: white;
  cursor: pointer;
}
section button:hover {
  background-color: #333;
}
.event-section {
  background-color: #f9f9f9;
  padding: 20px;
  text-align: center;
}
.event-section a {
  color: #0073e6;
  text-decoration: none;
}
.event-section a:hover {
  text-decoration: underline;
}

/* Backdrop */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Dark transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
  display: none; /* Hidden by default */
}

footer {
  text-align: center;
  margin: 16px;
}

/* Modal */
.modal {
  background-color: white;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
}

.modal-header {
  display: flex;
  justify-content: flex-end;
  padding: 10px;
}

.modal-header button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.modal-image {
  width: 100%;
  height: auto;
}

.modal-content {
  padding: 15px;
}

.modal-title {
  font-size: 1.7rem;
  margin: 10px 0 0 0;
  font-family: "Metamorphous", serif;
}

.modal-description {
  font-size: 1rem;
  color: #555;
}

.quote {
  background-color: antiquewhite;
  padding: 16px;
}

.quote big {
  font-family: "Metamorphous", serif;
  color: rosybrown;
}

.quote i {
  font-family: "Metamorphous", serif;
  font-size: 13px;
}

#donation-modal p {
  background-color: antiquewhite;
  padding: 16px;
}
