body {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(24, 145, 150, 0.5) 100%
  );
  font-family: "Supreme", sans-serif;
}
.header {
  max-width: 50rem;
  margin: auto;
}
h1 {
  text-align: left;
  font-weight: 700;
}

.section {
  max-width: 50rem;
  margin: auto;
}
.footer {
  max-width: 50rem;
  margin: 2rem auto; /* vertical margin and horizontal margin */
  text-align: center;
  border-top: solid 1px;
  border-color: hsl(0, 0%, 50%);
}

img {
  width: 100%;
  max-height: 250px; /* Ensure the maximum height is 150px */
  object-fit: cover;
}

h3 {
}
p {
  line-height: 1.75em;
}
.footer p {
  font-size: small;
  text-align: left;
}
a,
a:visited {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: black;
}
a:hover {
  color: hsla(0, 0%, 0%, 0.5);
}
a.no-underline {
  text-decoration: none;
}
