@font-face {
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../font/LibreFranklin-VariableFont_wght.ttf);
}

* {
  font-family: 'Libre Franklin', 'Helvetica Neue', helvetica, arial, sans-serif;
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

footer {
  box-shadow: 0 -10px 15px -3px rgb(0 0 0 / 0.2);
}

h1, h2 {
  font-weight: 800;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
}
h1 {
  font-size: 14px;
}
h2 {
  font-size: 11px;
}

/* <div class="w-full bg-cover bg-no-repeat bg-center"> */
.spacer {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
@supports (-webkit-touch-callout: none) { /* iOS Safari specific */
  .spacer {
    background-attachment: scroll;
  }
}

/* <section class="w-full bg-white py-20"> */
section {
  width: 100%;
  background: #ffffff;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@supports (hyphens: auto) {
  section {
    text-align: justify;
    hyphens: auto;
  }
}

/* <section class="space-y-8"> */
section > :not([hidden]) ~ :not([hidden]) {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* <section><h1/h2/p/... class="w-full max-w-screen-lg mx-auto px-10"> */
section > * {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 768px;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

/* <div class="gallery space-y-5"> */
.gallery > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

@media (orientation: portrait) {
  .portrait\:hidden {
    display: none;
  }

  .portrait\:flex-col {
    flex-direction: column;
  }
}
