body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  padding-top: 140px; /* push content below header */
}

/* Sticky header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  text-align: center;
  padding: 20px 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Logo */
#logo {
  width: auto;
  max-height: 140px;
  height: auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: scaleY(1);
  opacity: 1;
}

/* main */
main {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 140px;
}

.image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Headline */
h1 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-variant: small-caps;
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}

/* Footer Links */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
  margin-bottom: 40px;
}

.footer-links a {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-variant: small-caps;
  text-decoration: none;
  color: #111;
  transition: opacity 0.2s ease;
}

.footer-links a:visited {
  color: #111;
}

.footer-links a:hover {
  opacity: 1;
  color: #0000FF;
}

/* ========== MEDIA QUERIES ========== */

/* TABLET & SMALL DESKTOP: under 1150px */
@media (max-width: 1150px) {
  #logo {
    max-width: 90%;
  }
}

/* MOBILE: under 600px */
@media (max-width: 600px) {
  #logo {
    max-width: 90%;
  }

.slideshow {
  max-width: 100%;
}

  .footer-links {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  body {
    font-size: 16px;
  }

  main {
    padding: 0 25px;
  }

  h1 {
    font-size: 18px;
  }
}
