body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
}

.landing-container {
  text-align: center;
}

.round-image {
  border-radius: 50%;
  overflow: hidden;
  width: 300px; /* Passe die Größe des Bildes an */
  height: 300px; /* Passe die Größe des Bildes an */
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.round-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature {
  margin-top: 30px;
  font-size: 20px;  
  font-family: 'Segoe UI', Tahoma, sans-serif;
}
