:root {
  --bg-color-accent: #c1ab9a;
  --bg-color-accent-dark: #a18b75;
  --text-color-accent: #f9e5c3;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
body {
  background-color: var(--bg-color-accent-dark);
}
.header-image-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 55px;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;

  align-items: center;
  z-index: 10;
  background-color: rgba(161, 139, 117, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.main-logo {
  height: 40px;
}
.header-cta-button {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  background-color: var(--text-color-accent);
  color: var(--bg-color-accent-dark);
  padding: 8px 16px;
  border: 0;
  font-size: 13px;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
}
.header-cta-a {
  text-decoration: none;
  color: var(--bg-color-accent-dark);
}
.main-content {
  padding: 50px 20px;
  min-height: 100lvh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}
.main-content::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100vw;
  height: 100%;
  top: 0;
  background-image: url("/images/gv-linie-2.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.06;
  filter: invert(1);
  z-index: -1;
}

.main-content-wrapper {
  max-width: 570px;
}
.main-content-copy-wrapper {
  padding-top: 50px;
}
.main-content-headline {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-color-accent);
  animation: fadeIn 0.75s 0.3s 1 both;
}
.main-content-p {
  margin-top: 40px;
  text-align: center;
  font-size: 18px;
  line-height: 1.3;
  color: #14110e;
  font-weight: 00;
  animation: fadeIn 0.75s 0.6s 1 both;
}
.main-content-cta-wrapper {
  margin-top: 60px;
}
.main-content-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 15px;
  animation: fadeIn 0.75s 0.9s 1 both;
}
.main-content-cta-button {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  display: block;
  background-color: transparent;
  color: var(--text-color-accent);
  border-radius: 25px;
  border: 2px solid var(--text-color-accent);
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  transition: 0.3s;
}
.main-content-cta-button:hover {
  background-color: var(--text-color-accent);
  color: var(--bg-color-accent-dark);
}
.main-content-cta-button.primary {
  background-color: var(--text-color-accent);
  color: var(--bg-color-accent-dark);
}
.main-content-cta-a {
  text-decoration: none;
  color: var(--text-color-accent);
}
.global-widget {
  max-width: 770px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 50px;
  margin-bottom: 70px;
}

.global-footer {
  padding: 30px 20px;
  text-align: center;
}
.global-footer-text {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-color-accent);
}
.footer-a {
  color: var(--text-color-accent);
  text-decoration: none;
}

@media (min-width: 770px) {
  .main-content-headline {
    font-size: 48px;
  }
  .main-content-p {
    font-size: 21px;
  }
  .main-content-cta-button {
    font-size: 19px;
  }
  .main-content-wrapper {
    max-width: 700px;
  }
  .main-content-cta-buttons {
    gap: 20px;
  }
}
