.left,
.right {
  width: 50vw;
  height: 100vh;
}

.left a,
.right a {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 20dvh 20dvh 60dvh;
  grid-template-areas:
    "a"
    "b"
    "c";
  text-decoration: none;
}

.left a h1,
.right a h1 {
  color: #fff;
  font-weight: 200;
  grid-area: b;
  margin: 0;
  justify-self: center;
  align-self: center;
}

.left a h1 {
  font-size: clamp(3rem, 15vw + 1rem, 30rem);
}

.right a h1 {
  font-family: de-fonte;
  font-size: clamp(3rem, 8vw + 1rem, 10rem);
  color: #fff;

}

.left a p {
  color: #fff;
  font-size: 20px;
  font-weight: 200;
  font-family: mersad;
  
}

.right a p {
  color: #fff;
  font-size: 20px;
  font-weight: 200;
  font-family: mersad;
}

.left a p,
.right a p {
  grid-area: c;
  justify-self: flex-end;
  align-self: center;
  padding: 0 8% 0;
}

.now-logo {
 height: 30px !important;
  width: auto !important;
  padding-bottom: 2%;
}

.vaga-logo {
  height: 80px !important;
  width: auto !important;
}

.logo-wrapper,
.vaga-logo {
  grid-area: a;
  justify-self: center;
  align-self: center;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* a bestimmt die Klickfläche */
/* Bild füllt a komplett */
.left img,
.right img {
  position: absolute;
  width: 50%;
  height: 100%;
  object-fit: cover; /* wichtig */
  display: block;
}

.logo-wrapper h2 {
  text-decoration: none;
  color: #fff;
  padding-top: 30%;
  font-weight: 200;
 font-family: mersad;
}


