/* Allgemeine Stile */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1em;
  text-align: center;
}

.background-video {
  max-width: 100%;
  height: auto;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 8px;
  max-width: 90%;
  width: 400px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 2em;
  margin: 0;
}

.tagline {
  font-size: 1.2em;
  margin: 10px 0;
}

.install-button {
  display: block;
  background-color: #007bff;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  width: 100%;
  max-width: 250px;
  margin: 20px auto;
}

.install-button h2 {
  margin: 0;
  font-size: 1.2em;
}

.install-button p {
  margin: 0;
  font-size: 0.8em;
}

.requirements {
  font-size: 1em;
  margin: 20px 0;
  text-align: left;
}

.requirements ul {
  list-style: none;
  padding: 0;
}

.requirements ul li {
  margin: 5px 0;
}

.impressum-link {
  display: block;
  font-size: 1em;
  margin-top: 20px;
  color: #333;
  text-decoration: none;
}

.youtube-logo {
  width: 100px;
  margin-top: 10px;
}

/* Mobile Anpassungen */
@media (max-width: 600px) {
  h1 {
    font-size: 1.5em;
  }

  .tagline {
    font-size: 1em;
  }

  .install-button {
    font-size: 0.9em;
    padding: 8px;
  }

  .requirements {
    font-size: 0.9em;
  }

  .impressum-link {
    font-size: 0.9em;
  }
}  }

/* Hintergrundvideo */
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Overlay für Impressum */
.overlay {
  background-color: rgba(255, 255, 255, 0.8); /* Halbtransparenter Hintergrund */
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 8px;
  max-width: 90%;
  width: 400px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

h1 {
  font-size: 2em;
  margin: 0;
}

.content p {
  font-size: 1em;
  line-height: 1.5em;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5em;
  }

  .content p {
    font-size: 0.9em;
  }
}

.back-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 1em;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid #007bff;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.back-link:hover {
  background-color: #007bff;
  color: #fff;
}