*,
*::after,
*::before {
  box-sizing: border-box;
}
/* open-sans-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/open-sans-v35-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v35-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/open-sans-v35-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: 'Open Sans';
  font-weight: 300;
}

svg {
  display: block;
  max-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: hsl(0 0% 97%);
}

h1,
h2,
h3 {
  text-wrap: balance;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.1;
  padding: 0;
  margin: 0;
  font-weight: 800;
}

h1 {
  font-size: clamp(2em, 4em, 8vh);
  text-transform: uppercase;
}

h2 {
  margin-bottom: 3em;
  font-size: clamp(1em, 3em, 4vh);
}

ul {
  font-size: 1.25em;
  list-style: none;
}

dl a {
  line-height: 3em;
  color: black;
  font-weight: 800;
}

df {
  display: block;
  font-weight: 400;
  background-color: black;
  color: white;
  padding: 0.25em 1ch;
  border-radius: 0.25rem;
}
dd {
  margin-bottom: 1em;
}
section + section {
  margin-top: 2em;
  border-top: 1px solid black;
  padding-top: 3em;
}
ul,
p {
  text-align: center;
}

main {
  padding-bottom: 2em;
}

.abriss {
  position: relative;
  isolation: isolate;
}
.abriss::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  box-shadow: 0 0 3rem hsl(0 0% 0% / 0.6);
}
.container {
  max-width: min(35em, calc(100% - 2em));
  margin-inline: auto;
  box-shadow: 0 0 5em hsl(0 0% 0% / 0.2);
  background-color: white;
  overflow: hidden;
  margin-bottom: 5rem;
  border-radius: 0 0 0.5rem 0.5rem;
}
.container > :not(.abriss) {
  padding-inline: 1em;
}
.even-columns {
  display: grid;
  gap: 1em;

  grid-template-columns: repeat(auto-fit, minmax(20ch, 1fr));
}

#Gesicht {
  transform-origin: 50% 61%;
  animation: laundry 25s infinite;
}

@keyframes laundry {
  0% {
    transform: rotate(0deg);
  }
  40%,
  50% {
    transform: rotate(720deg);
  }
  95%,
  100% {
    transform: rotate(-360deg);
  }
}
