body {
  display: flex;
  padding: 18px 24px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
  background-color: #fdfcf8;

  --font-serif-heading: "Tangerine", "Garamond", serif;
  --font-serif-body: "Georgia", "Merriweather", serif;

  font-family: var(--font-serif-body);
}

img:not(.bild) {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bildcontainer {
  display: flex;
  justify-content: center;
}

.bild {
  height: 450px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

@media screen and (min-width: 700px) {
  .bild {
    height: 500px;
  }
}

/* .centtext {
  text-align: center;
} */

h1,
h2 {
  text-align: center;
  color: rgb(57, 57, 57);
  letter-spacing: 0.04em;
}

h1 {
  font-family: var(--font-serif-heading);
  font-size: 3rem;
  text-wrap: balance;
  letter-spacing: 0.03em;
}

h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1rem;
}

.sect {
  margin: 1.5rem 0;
}

:root {
  --shadow-color: 213deg 16% 60%;
  --shadow-elevation-medium: 0.3px 0.5px 0.6px hsl(var(--shadow-color) / 0.43),
    0.7px 1.5px 1.7px -1px hsl(var(--shadow-color) / 0.39),
    1.9px 3.9px 4.5px -2px hsl(var(--shadow-color) / 0.35),
    4.9px 9.9px 11.5px -3px hsl(var(--shadow-color) / 0.31);
}

.sect:nth-child(odd) {
  background-color: rgb(248, 243, 250);
  padding: 18px;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-elevation-medium);
  text-align: left;
  border-left: 2px solid rgb(159, 48, 161);
}

a {
  color: rgb(48, 48, 161);
  text-decoration: none;
  border-bottom: 1px dotted rgb(48, 48, 161);
}

p {
  font-family: var(--font-serif-body);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.6;
  text-wrap: auto;
  margin: 8px 0;
}

ul {
  margin: 8px 0;
  padding-left: 2em;
}

li {
  margin: 8px 0;
  /* different li indicator */
  list-style: none;
  position: relative;
  ::after {
    content: "•";
    position: absolute;
    left: -1.5em;
    color: rgb(48, 48, 161);
  }
}

hr {
  margin: 1.5rem 0;
  border: 0;
}

.warning {
  color: rgb(196, 1, 1);
  font-size: 1.25rem;
}

.fade-in {
  opacity: 1;
  transform: none;
  transition: none;

  padding: 24px;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

  *:first-child {
    margin-top: 0;
  }
}

.js-enabled .fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
