body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 20px;
  position: relative;
  flex-direction: column;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  background-image: url("bilder/BG-01.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.container {
  padding: 40px;
  max-width: 750px;
  text-align: center;
  font-family: 'Patrick Hand', cursive;
  position: relative;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 20px;
  animation: fadeIn 1s ease-in-out;
}

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

h1 {
  font-size: 4rem;
  margin-bottom: 0px;
  color: white;
  font-weight: bold;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

h3 {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  margin-top: 10px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.coming-soon {
  background-color: #000;
  color: white;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

p {
  font-size: 1.4rem;
  margin: 15px 0;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}

.highlight {
  color: #ffffff;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact {
  margin-top: 30px;
  font-size: 1.4rem;
  color: white;
}

a, a:visited, a:focus {
  color: #66ccff;
  text-decoration: none;
  font-weight: bold;
}

a:focus {
  outline: 2px dashed #66ccff;
  outline-offset: 4px;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.firmenlogo, .soon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 30%;
  height: auto;
  z-index: 10;
}

.firmenlogo {
  left: 30px;
}

.soon {
  right: 30px;
}

@media (max-width: 768px) {
  .firmenlogo, .soon {
    position: static;
    transform: none;
    max-width: 60%;
    margin: 10px auto;
    display: block;
  }

  h1 {
    font-size: 3rem;
  }

  .coming-soon {
    font-size: 1.4rem;
  }

  p {
    font-size: 1.3rem;
  }
}
