/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #edecc2;
  background: linear-gradient(135deg, #edecc2 0%, #c9c7a5 100%);
  font-family: Arial, sans-serif;
  text-align: center;
}


/* Container */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Headline als Bild */
.headline-img {
  max-width: 90%;
  height: auto;
  display: block;
  opacity: 0.9;
}

/* Subtext */
.subtext {
  font-size: 1.2rem;
  color: #a2a292;
  max-width: 500px;
  font-weight: lighter;
}

/* Button */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: #a9574e;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: lighter;
  transition: background 0.3s ease;
  border: #a2a292 1px solid;
}

.btn:hover {
  background: #88463f;
  border: #efefef 1px solid;
}