/* Google Material Design inspiriert */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #fafafa;
  height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.container {
  text-align: center;
  border: 2px solid #2196F3;
  border-radius: 20px;
  padding: 40px 60px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2rem;
  color: #0d47a1;
  margin-bottom: 15px;
}

.highlight {
  color: #1976d2;
}

p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 30px;
}

a {
  color: #1976d2;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Material Design Button */
.button {
  display: inline-block;
  background-color: #2196F3;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.button:hover {
  background-color: #1976d2;
  box-shadow: 0 4px 10px rgba(25, 118, 210, 0.4);
  transform: translateY(-2px);
}

/* Footer mit Imprint-Link */
footer {
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
}

footer a {
  color: #757575;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #1976d2;
  text-decoration: underline;
}
