
/* CSS Reset / Global Reset */
*, *::before, *::after  {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Layout-Stabilität */
html {
  height: 100%;
}

body {
  line-height: 1.5; /* Bessere Lesbarkeit */
  -webkit-font-smoothing: antialiased; /* Schärfere Schrift auf macOS */
  text-size-adjust: none; /* Verhindert ungewolltes Schrift-Zoomen auf Mobile */
  min-height: 100vh; /* Viewport Height */
  min-height: 100dvh; /* Dynamic Viewport Height */
}

/* Scrollen verbieten */
html, body {
	height: 100%;
	overflow: hidden; /* Verhindert das Scrollen des gesamten Fensters */	
}

/* Responsiver Bild-Reset */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}


/* Verhindert unschöne Umbrüche in Überschriften */
h1, h2, h3, h4 {
  text-wrap: balance;
}

/* Formular-Elemente anpassen */
input, button, textarea, select {
  font: inherit;
}


p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
