body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #333;
  text-align: center;
  padding-bottom: 80px; /* Platz für festen Footer */
}

.container {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
}

.logo {
  max-width: 200px;
  height: auto;
  margin: 20px 0 10px;
  animation: fadeIn 1s ease;
}

.contact-info {
  margin-bottom: 20px;
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}

.contact-info a {
  color: #000;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

a.button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 18px;
  margin: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

a.button i {
  margin-right: 10px;
  font-size: 20px;
  color: #ff7e3f;
}

a.button:hover {
  background-color: #f9f9f9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f0f0f0;
  padding: 10px;
  font-size: 14px;
  color: #000;
  border-top: 2px solid #ff7e3f;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
