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

html, body {
  min-height: 100%;
  font-family: Arial, sans-serif;
  background-image: url('vergleichen_images/red_and_blue.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Header titles */
.titles {
  width: 100%;
  text-align: center;
  color: #ffffff;
  padding: 40px 20px 20px 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.titles h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.titles h2 {
  font-size: 1.2rem;
  font-weight: normal;
}

/* Container that holds the image split */
.container {
  display: flex;
  width: 100%;
  position: relative;
  padding: 20px 0;
  z-index: 1;
}

/* Red and blue image sections */
.left, .right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10%;
  position: relative;
  z-index: 1;
}

/* Images */
.centered-image {
  width: 140%;
  height: auto;
}

/* Centered Download Button */
.download-button-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.download-button {
  background-color: #ffb803;
  color: #333;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.download-button:hover {
  background-color: #ffca45;
}

/* Video Section */
.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 1;
}

.video-wrapper iframe {
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border: none;
}

.seo-text {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 1;
}

footer {
  background-color: #60b3fc;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 0.9rem;
}

footer a {
  color: #000;
  text-decoration: none;
}

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

/* Optional: Icon-Größe und Abstand */
footer i {
  font-size: 1.2rem;
}