/* Thin 100 */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 100;
  src: url('/fonts/poppins-v23-latin-100.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 100;
  src: url('/fonts/poppins-v23-latin-100italic.woff2') format('woff2');
  font-display: swap;
}

/* Extra Light 200 */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  src: url('/fonts/poppins-v23-latin-200.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 200;
  src: url('/fonts/poppins-v23-latin-200italic.woff2') format('woff2');
  font-display: swap;
}

/* Light 300 */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/poppins-v23-latin-300.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 300;
  src: url('/fonts/poppins-v23-latin-300italic.woff2') format('woff2');
  font-display: swap;
}

/* Regular 400 */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/poppins-v23-latin-regular.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  src: url('/fonts/poppins-v23-latin-italic.woff2') format('woff2');
  font-display: swap;
}

/* Medium 500 */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/poppins-v23-latin-500.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 500;
  src: url('/fonts/poppins-v23-latin-500italic.woff2') format('woff2');
  font-display: swap;
}

/* SemiBold 600 */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/poppins-v23-latin-600.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 600;
  src: url('/fonts/poppins-v23-latin-600italic.woff2') format('woff2');
  font-display: swap;
}

/* Bold 700 */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/poppins-v23-latin-700.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 700;
  src: url('/fonts/poppins-v23-latin-700italic.woff2') format('woff2');
  font-display: swap;
}

/* ExtraBold 800 */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('/fonts/poppins-v23-latin-800.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 800;
  src: url('/fonts/poppins-v23-latin-800italic.woff2') format('woff2');
  font-display: swap;
}

/* Black 900 */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  src: url('/fonts/poppins-v23-latin-900.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 900;
  src: url('/fonts/poppins-v23-latin-900italic.woff2') format('woff2');
  font-display: swap;
}

html, body {
  height: 100%;
  margin: 0;
  background-color: #FFE3EC;  /* Hintergrundfarbe */
  color: #00529C;              /* Textfarbe */
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  flex-direction: column; /* Kinder untereinander */
  align-items: center;    /* horizontal zentrieren */
  justify-content: center; /* vertikal zentrieren */
  height: 100vh;
  margin: 0;
  background-color: #FFE3EC;
  color: #00529C;
  font-family: 'Poppins', sans-serif;
  text-align: center;     /* Text zentrieren */
  gap: 1rem;              /* Abstand zwischen Elementen */
}

/* Responsive Bild */
.responsive-image {
  height: 200px;
  width: auto;
  max-width: 100%;
  display: block;
  margin: 20px auto 0;
  /* Bild bleibt maximal 200px hoch, schrumpft aber auf kleinen Bildschirmen mit */
}

.responsive-long {
  max-width: 200px;  /* maximale Breite */
  width: 100%;       /* skaliert bei kleinen Bildschirmen */
  height: auto;      /* proportional */
  display: block;
  margin: 20px auto 0; /* zentriert mit Abstand oben */
}
