/* Grundlegende Einstellungen für das gesamte Dokument */
body,html {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  color: #666666;
  
  font-size: 16px;  /* 1rem = 16px */
  
	background: #ebebeb;
	background: linear-gradient(90deg,rgba(235, 235, 235, 1) 0%, rgba(254, 254, 254, 1) 10%, rgba(255, 255, 255, 1) 90%, rgba(235, 235, 235, 1) 100%);
}

/* Zentrierter Container für Logo und Kontaktinformationen */
.container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 50px 20px; /* kann bei Bedarf angepasst werden */
  box-sizing: border-box; /* Damit Padding nicht die Gesamtbreite sprengt */
}

/* Logo-Style: die Größe auf 200x50 Pixel begrenzen und 200px Abstand oben */
.logo {
  max-width: 100%;
  height: auto;
  width: 400px;
  object-fit: contain;
  margin-top: 100px; /* 200px Abstand oberhalb des Logos */
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Textgestaltung für die Kontaktinformationen */
.info p {
  line-height: 1.5;
}

a {
  color: #666;            /* 70% Grau */
  text-decoration: none;  /* Keine Unterstreichung */
}

/* Optional: Link soll sich bei Hover abheben */
a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 480px) {
  body,html {
    font-size: 12px;  /* 1rem = 16px */
  }
  .logo {
	  margin-top: 10px;
  }
}