body {
  margin: 0;
  font-family: "Ubuntu", sans-serif;
  background: linear-gradient(to bottom, #1e303e, #365263);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

header .logo {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1.5rem;
  font-weight: 400;
}

main .claim {
  font-size: 3rem;
  font-weight: 600;
  text-align: center; /* Zentriert den Text */
  line-height: 1.5; /* Reduziert den Abstand */
}

footer {
  position: absolute;
  bottom: 20px;
  width: 100%; /* Stellt sicher, dass der Footer mittig bleibt */
  text-align: center;
}

footer .see-you {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px; /* Fügt Abstand zum Kontakt-Link hinzu */
}

footer .contact {
  font-size: 1rem;
  font-weight: 400;
}

footer .contact a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

footer .contact a:hover {
  text-decoration: underline;
}
