/* Basis-Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Ganzer Bildschirm */
html, body {
  height: 100%;
  width: 100%;
  background-color: #e0e0e0; /* hellgrauer Hintergrund */
  font-family: system-ui, sans-serif;
}

/* Container für zentrierte Darstellung mit Abstand oben/unten */
.centered-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-inline: 1rem;
  padding-block: 2rem; /* vertikaler Abstand oben & unten */
  box-sizing: border-box;
}

/* Bildanpassung */
.responsive-image {
  max-height: calc(100vh - 4rem); /* Gesamthöhe minus vertikaler Abstand */
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
}
