body {
  margin: 0;
  background: linear-gradient(#e1d7b4, #fee8c9 10%, #fff6e9, #f5edd2);

  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
a {
  color: black;
}
.content {
  max-width: 1024px;
  margin: 1.5em auto;
  padding: 0 20px;
}
.logo {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  display: block;
}
h1 {
  font-size: 3.5em;
  text-align: center;
  font-weight: 800;
  color: #393328;
  font-family: "UnifrakturMaguntia", serif;
  margin: 2.5em auto 1em;
  text-shadow: 0 4px 4px #ff000040;
}
h2 {
  font-family: "Bodoni Moda SC", serif;
  text-align: center;
  margin-top: 40px;
  text-transform: uppercase;
}
.subtitle {
  font-family: "Bodoni Moda SC", serif;
  font-size: 1.35em;
  text-align: center;
}
.past-event {
  display: flex;
  flex-direction: row;
  outline: 5px double black;

  @media (max-width: 600px) {
    flex-direction: column;
  }
}
.past-event-body {
  padding: 1em;
}
.past-event-subtitle {
  color: #555;
  font-size: 0.85em;
}
.past-event-img {
  margin-right: 0.5em;

  @media (max-width: 600px) {
    margin-right: 0;
  }
}
.past-event-img img {
  display: block;
  @media (max-width: 600px) {
    width: 100%;
  }
}
.past-event-title {
  font-weight: bold;
  font-size: 1.15em;
}
.faq-entry summary {
  font-weight: bold;
  cursor: pointer;
}
.faq-entry summary:hover {
  color: #666;
}
.faq-entry p {
  margin-top: 0;
}
.separator {
  text-align: center;
  margin: 4em 0;
}
.separator img {
  width: 65%;
}
.btn {
  background-color: #6d0a0a;
  padding: 15px 25px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background 0.2s;
  border-radius: 8px;
}
.btn img {
  margin-right: 6px;
}
.btn:hover {
  background-color: #8f0808;
}
.center {
  text-align: center;
}
.option-pass,
.option-fail {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
}
.option-pass::before,
.option-fail::before {
  margin-right: 8px;
  font-size: 28px;
  display: inline-block;
}
.option-pass::before {
  content: "✔️";
}
.option-fail::before {
  content: "❌";
}
.options {
  list-style: none;
}
.review-container {
  display: flex;
  gap: 10px;

  @media (max-width: 600px) {
    flex-direction: column;
  }
}
.review {
  padding: 20px;
  display: inline-flex;
  flex: 1 1 0;
  background-color: #f6f6f666;
  border: 1px solid #000;
  border-radius: 10px;
  align-items: center;
  flex-direction: column;
}
.review-user {
  text-align: center;
  font-weight: bold;
}
.review-user img {
  border-radius: 32px;
  width: 64px;
}
