/* FONTS */
@font-face {
  font-family: 'sansserifexbflf-italic';
  src: url('./font/sansserifexbflf-italic.otf');
}

body, html {
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  height: 100vh;
  text-align: center; /* Zentrieren Sie den Text horizontal */
}

.container a {
  text-decoration: none;
}

.split {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-right: 1px solid #ccc;
  text-align: center; /* Zentrieren Sie den Text horizontal */
}

.left {
  background-image: url('/img/blue.png');
  background-size: cover; /* Größe anpassen */
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.right {
  background-image: url('/img/download-background.jpg');
  background-size: cover; /* Größe anpassen */
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

/* Für das Logo auf der linken Seite */
.left .logo {
  margin-bottom: 20px;
}

/* Für das Logo auf der rechten Seite */
.right .logo {
  margin-bottom: 20px;
}

.logo img {
  width: 100px;
  height: auto;
}

/* Bild auf der linken Seite */
.left .image img {
  width: 500px;
  height: auto;
}

/* Bild auf der rechten Seite */
.right .image img {
  width: 500px;
  height: auto;
}

/* Mobile Ansicht */
@media screen and (max-width: 600px) {
  .container {
    flex-direction: column;
    align-items: center; /* Zentrieren Sie die Elemente horizontal */
  }

  .split {
    padding: 10px;
    text-align: center; /* Zentrieren Sie den Text horizontal */
  }

  /* Anpassungen für das Logo */
  .logo img {
    width: 80px;
  }

  /* Anpassungen für die Bilder */
  .left .image img,
  .right .image img {
    width: 100%; /* Vollständige Breite */
    height: auto; /* Automatische Höhe */
  }
}

/* Text-Styling */
.left .text h2,
.right .text h2 {
  font-family: 'sansserifexbflf-italic', sans-serif; /* Schriftart anwenden */
  font-weight: 150; /* Dünne Schrift */
}

.left .text p,
.right .text p {
  font-family: 'sansserifexbflf-italic', sans-serif; /* Schriftart anwenden */
  font-weight: 150; /* Dünne Schrift */
}
