body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #f0f4f8, #d9e2ec);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo {
  display: flex;
  justify-content: center; 
  margin-bottom: 20px;
  position: absolute;
  top: 250px; /* Logo nach oben schieben */
  left: 50%;
  transform: translateX(-50%);
  width: 100%; 
}
.logo img {
  width: 100%;  /* Größe anpassen */
  height: auto;
  max-height: 100px;
  background-color: transparent;
  object-fit: contain;
}
.container {
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #333;
  margin-bottom: 10px;
}

p {
  color: #555;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.link-button {
  text-decoration: none;
  background-color: #0077cc;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.link-button:hover {
  background-color: #005fa3;
}