/* 1. Die normale (aufrechte) Version */
@font-face {
  font-family: 'Inter';
  src: url('/static/fonts/Inter/InterVariable.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* 2. Die kursive Version */
@font-face {
  font-family: 'Inter';
  src: url('/static/fonts/Inter/InterVariable-Italic.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: italic;
  /* Wichtig: Hier auf italic setzen */
  font-display: swap;
}
h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}
h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.25;
}
h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
}
h4 {
  font-size: 1.25rem;
}
p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
body ul {
  padding: 0 18px;
}
body ul li {
  font-weight: 400;
  line-height: 1.6;
}
body {
  background-color: #fff;
  color: #2a2c2c;
}
h1,
.richtext-block,
.html-block {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
#main {
  padding-bottom: 5rem;
}
.richtext-block {
  margin-top: 3rem;
}
#content {
  flex: 1 0 auto;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#content p,
#content li {
  font-size: 1.1rem;
  line-height: 2;
}
footer {
  opacity: 1;
}
.content-page #header-background,
.content-page #footer-background {
  opacity: 0.9;
}
/***** only smartphone *****/
@media only screen and (max-width: 768px) {
  .content-page {
    /*
        #scrolling-content {
            height: calc(100vh - 80px);
            margin-top: 80px;
        }
        */
  }
  .content-page h1 {
    padding-top: 3rem;
    padding-bottom: 2rem;
    font-size: 2.5rem;
  }
  .content-page h1,
  .content-page .html-block {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .content-page #content {
    padding-bottom: 4rem;
  }
}
/***** tablet *****/
