:root {
  color-scheme: only light;
}
h1 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #f40000;
  margin-top: 30px;
  margin-bottom: 20px;
  word-wrap: break-word;
  position: relative;
}
a:link {
  color: #f40000;
  text-decoration: none;
  }
/* Weißer Balken */
.separator {
  width: 100%;
  height: clamp(0, 5vw, 50px);
  background-color: white;
  margin-top: 20px;
}
.separator-small {
  width: 100%;
  height: clamp(0, 5vw, 50px);
  background-color: white;
  margin-top: 0px;
}
.intro-text {
  max-width: 700px;
  margin: 15px auto 5px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  line-height: 1.7;
  color: #444;
  padding: 0 10px;
}
.intro-text h1 {
  color: #f40000;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}

button {
  position: relative;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  margin: auto;
  background-color: #f40000;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}
button:hover {
  background-color: #cc0000;
}