html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.35;
  color: #333;
  background-color: #f2f2f2;
  background-image: url("./titelbild.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.page {
  min-height: 100vh;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.8);
  padding: 14px 16px;
  border-radius: 5px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

h1 {
  font-size: 0.8rem;
  color: #000;
  border-bottom: 2px solid #eee;
  padding-bottom: 6px;
}

p {
  margin: 6px 0;
}

.contact-info {
  margin-top: 12px;
  font-style: normal;
}

.contact-grid {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-left {
  flex: 0 0 42%;
}

.contact-right {
  flex: 1 1 auto;
}

@media (max-width: 420px) {
  .contact-grid {
    flex-direction: column;
    gap: 10px;
  }

  .contact-left {
    flex-basis: auto;
  }
}

.footer {
  margin-top: 10px;
  font-size: 0.65rem;
  color: #777;
}

a {
  color: #c8a033;
  text-decoration: none;
  transition: color 180ms ease;
}

a:hover {
  color: #333;
  text-decoration: none;
}
