body {
  background-color: #ffffff;
  color: #000000;
  margin: 0;
  padding: 0;
  font-family: 'Mulish', sans-serif;
}

.container {
  max-width: 70%;
  margin: 0 auto;
  padding: 3rem 1rem;
}

a {
  color: #01b301; /* default link color */
  font-weight: 700;
  text-decoration: underline;
}

h1 {
  font-family: 'Barlow', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}

p {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: left;
}

.image-section {
  margin: 2rem 0;
}

.image-section img {
  max-width: 100%;
  height: auto;
  display: block;
}

.caption {
  background-color: #f0f0f0;
  color: #000;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: 'Mulish', sans-serif;
  font-weight: 300;
  text-align: left;
}

.image-row {
  display: flex;
  justify-content: space-between;
  gap: 0.1rem;
  margin: 0.5rem;
  flex-wrap: wrap;
}

.image-row img {
  width: 100%;
  max-width: 32%;
  height: auto;
  display: block;
}

footer {
  background-color: #e1f500;
  color: #000000;
  padding: 2rem 1rem;
  text-align: center;
  font-family: 'Mulish', sans-serif;
  font-size: 1rem;
  width: 100%;
  display: block;
  word-wrap: break-word;
  white-space: normal;
  box-sizing: border-box;
}

.top-footer {
  background-color: #787800;
  color: #000000;
  padding: 2rem 1rem;
  text-align: center;
  font-family: 'Mulish', sans-serif;
  font-size: 2rem;
  display: block;
  width: 100%;
  word-wrap: break-word;
  white-space: normal;
  box-sizing: border-box;
}

.iframe-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (9 / 16 = 0.5625) */
  height: 0;
  overflow: hidden;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* adjust for smaller displays */
@media (max-width: 850px) {
  .image-row {
    flex-direction: column;
    align-items: center;
  }

  .image-row img {
    max-width: 100%;
  }

  .container {
    max-width: 90%;
    padding: 2rem 1rem;
  }

  h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  footer {
  font-size: 1rem;

  .top-footer {
  font-size: 1rem;
  }
}
}
