@charset "UTF-8";
/* CSS Document */

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  /* Farben */
  background-color: #808d3a;
  color: #f1e3d3;

  /* Schrift */
  font-family: source-sans-3, sans-serif;
  text-align: center;
}

/* ================= HEADER ================= */
.header {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Logo */
.logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 240px;
  z-index: 10;
}

/* Textbereich */
.header-text {
  margin-top: 60px;
  padding: 0 20px;
}

.header-text h1 {
  font-family: trumpgothicpro, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1rem;
  size: 3rem;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 20px;
  color: #1c351d;
}

.header-text p {
  font-size: 1.1rem;font-weight: 400;
  margin-bottom: 30px;
  color: #1c351d;
}

.image-welke-impress {
  width: 22px;
  vertical-align: middle;
  margin: 0 3px 2px;
}

/* Call-to-Action */
.cta-button {
  display: inline-block;
  background-color: #1c351d;
  color: #f1e3d3;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
}

.cta-button:hover {
  background-color: #808d3a;
  color: #1c351d;
}

/* ================= FOOTER ================= */
.footer {
  background-color: #1c351d;
  color: #f1e3d3;
  font-size: 0.9rem;
	line-height: 0.7rem;
  padding: 20px 0;
}

.image-welke {
  width: 14px;
  vertical-align: middle;
  margin: 0 3px 1px;
}

.footer a {
  color: #808d3a;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ================= FÜR MOBILE ANSICHT ================= */

@media (max-width: 768px) {

  .logo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0px auto 20px;
    max-width: 140px;
  }

  .header {
    justify-content: flex-start;
    padding-top: 0;
  }

.header-text h1 {
  font-size: 2rem;
  }	
	
  .header-text {
    margin-top: 0;
	  font-size: 1.0rem;
  }

  .cta-button {
font-size: 1rem;
  font-weight: 700;
}
	
}
