main {
	color: #000;
	margin-top: 100px;
}
main section:first-child {
	min-height: 30vh;
}
section.datenschutz,
section.impressum {
	max-width: 1300px;
	margin: 0px auto;
	border-radius: 20px;
	padding: 20px;
}
.header-transparent {
	background-color: rgba(0, 0, 0, 0.7);
}

@media all and (max-width: 768px) {
/* small Devices */

}


/* typographie */
/* Allgemeine Schriftart */
section.datenschutz,
section.impressum {
	font-family: 'Inter', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333; /* Dunkles Grau für angenehme Lesbarkeit */
	background-color: #f9f9f9; /* Leichtes Grau für sanften Kontrast */
  }
  
  /* Typographie für Überschriften */
  h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	margin: 0 0 15px;
	line-height: 1.3;
	color: #222; /* Leicht dunkler für mehr Kontrast */
  }
  
  h1 {
	font-size: 2.5rem; /* 40px */
  }
  
  h2 {
	font-size: 2rem; /* 32px */
  }
  
  h3 {
	font-size: 1.75rem; /* 28px */
  }
  
  h4 {
	font-size: 1.5rem; /* 24px */
  }
  
  h5 {
	font-size: 1.25rem; /* 20px */
  }
  
  h6 {
	font-size: 1rem; /* 16px */
  }
  
  /* Absatztext */
  p {
	font-size: 1rem;
	margin: 0 0 1rem; /* Abstand unter Absätzen */
	color: #444;
  }
  
  /* Links */
  a {
	color: #007bff; /* Blau für gute Erkennbarkeit */
	text-decoration: none;
	transition: color 0.3s ease-in-out;
  }
  
  a:hover {
	color: #0056b3; /* Dunkleres Blau beim Hover */
	text-decoration: underline;
  }
  
  /* Listen */
  ul, ol {
	margin: 0 0 1rem;
	padding-left: 20px;
  }
  
  li {
	margin-bottom: 5px;
  }
  
  /* Zitate */
  blockquote {
	font-style: italic;
	border-left: 4px solid #007bff;
	padding-left: 15px;
	margin: 20px 0;
	color: #555;
  }
  
  /* Buttons */
  button {
	font-size: 1rem;
	padding: 10px 20px;
	border: none;
	background-color: #007bff;
	color: #fff;
	cursor: pointer;
	transition: background 0.3s ease-in-out;
  }
  
  button:hover {
	background-color: #0056b3;
  }
  
  /* Responsive Optimierung */
  @media (max-width: 768px) {
	h1 { font-size: 2rem; }
	h2 { font-size: 1.75rem; }
	h3 { font-size: 1.5rem; }
	h4 { font-size: 1.25rem; }
	h5 { font-size: 1rem; }
	h6 { font-size: 0.875rem; }
	body { font-size: 14px; }
  }