body {
  display: grid;
  width: 100vw;
  height: 100vh;
  max-height:100vh;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(8, 1fr);
  font: 1em sans-serif;
  margin: 0;
}

#logo {
  width: 20rem;
  height: 6rem;
  align-self: center;
  justify-self: center;
}
#logo-white {
  grid-column: 1;
  align-self: center;
  justify-self: center;
  height: 4rem;
}

.info {
  grid-row: 1 / span 7;
  grid-column: 1 / span 5;
  display: grid;
  font: 1em sans-serif;
  background-image: url(mountains.jpg);
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  background-color: rgb(255 255 255 / 78%);
}
.user-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #003868;
  height: 100%;
}
.text {
  font-size: 1.5rem;
  color: #7d7b7b;
  justify-self: center;
  text-align: center;
  margin: 0 2rem;
}
#email {
  grid-column: 2;
  justify-self: center;
  align-self: center;
  color: white;
  padding: 1rem;
  line-height: 1.3rem;
}

#firma {
  font-size: 1.2rem;
}
#firma-info {
  font-size: 0.9rem;
}
.bott-link {
  text-decoration: none;
  color: white;
}
.bott-link:hover {
  color: #6b6b6b;
}

footer {
  grid-row: 8;
  grid-column: 1 / span 5;
}

@media only screen and (max-device-width: 600px) {
  body {
    height: -webkit-fill-available;
  }
}
@media only screen and (max-width: 600px) {
  #email {
    grid-column: 1 / span 2;
  }
  #logo-white {
    display: none;
  }
}
