@font-face {
  font-family: Bebas Neue;
  src: url(BebasNeue-Regular.woff2);
}

* {
  box-sizing: border-box;
  margin: 0;
}

.tbu-page html {
  font-size: 32px;
  font-family:
    Bebas Neue,
    Arial,
    Helvetica,
    sans-serif;
}

body {
  background-color: #faf4e7;
  color: #000000;
}

.tbu-page header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
}

.tbu-page h1 {
  font-size: 2rem;
}

.tbu-page section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;

  position: relative;
  z-index: 1;

  gap: 1rem;
  padding: 5rem 2rem;
}

.tbu-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tbu-page figure.pos1 {
  grid-column: 2 / -1;
  grid-row: 1 / span 2;
}

.tbu-page figure.pos2 {
  grid-column: 3;
  grid-row: 3 / span 2;
}

.tbu-page figure.pos3 {
  grid-column: 1 / 3;
  grid-row: 4 / span 2;
}

.tbu-page figure.pos4 {
  grid-column: 2 / -1;
  grid-row: 6 / span 2;
}

.tbu-page figure.pos5 {
  grid-column: 1;
  grid-row: 7 / span 2;
}

.tbu-page a {
  color: currentColor;
  text-decoration-color: #cd3c2f;
  text-underline-offset: 4px;
}

.tbu-page a:hover {
  text-decoration-color: #000000;
}

.tbu-page svg.squiggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 200vw;
  z-index: 1; /* behind content */
  pointer-events: none; /* don't block text selection */
}

.tbu-page svg.squiggle path {
  stroke-width: 0.1rem;
}
