/* Grundlayout */
body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(to right, white 70%, #bfccaa 70%);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container für die Grafik */
.container {
  text-align: center;
}

/* Grafik-Styling */
.image {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.2s ease;
}

.image:hover {
  transform: scale(1.03);
}

/* Nur Desktopgrafik anzeigen */
.desktop {
  display: block;
}

.mobile {
  display: none;
}

/* Responsives Verhalten für kleine Bildschirme */
@media (max-width: 768px) {
  body {
    background: linear-gradient(to right, white 80%, #bfccaa 80%);
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
    max-width: 94%;
  }
}
