/* FONTS */

/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v44-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/open-sans-v44-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



/* STYLES */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Stellt sicher, dass das Element die volle Bildschirmhöhe hat */
  margin: 0; /* Entfernt Standard-Margin des Bodys */
}

p {
	font-family: "Open Sans";
	font-weight: 400;
	line-height: 24px;
}

span.bold {
	font-weight: 800;
}

span.semibold {
	font-weight: 700;
}

div.container {
   
}

.text-block {
	margin-left: auto;
    margin-right: auto;
    width: 25em;
	z-index: 1;		
}

.fixierte-grafik {
    position: fixed;
    bottom: 0px;   /* Abstand vom unteren Rand */
    right: 0px;    /* Abstand vom rechten Rand */
    width: 600px;   /* Optional: Größe der Grafik */
    height: auto;
    z-index: 0;  /* Optional: sorgt dafür, dass die Grafik über anderen Elementen liegt */
}
