body {
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  font-size: 100%;
}

.container {
  min-height: calc(100vh - 100px);
}

main {
  display: grid;
  grid-template-columns: 1fr 5px 1fr;
  grid-template-rows: repeat(1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  font-variant: small-caps;
  margin: 15px;
}

.main-logo {
  grid-area: 1/1/5/2;
  font-size: 5rem;
  text-align: right;
  align-self: center;
}

.divider {
  grid-area: 1/2/5/3;
  background-color: black;
  align-self: normal;
}

.logo {
  font-size: 4rem;
  width: 100%;
}
.logo a {
  text-decoration: none;
  color: black;
  display: block;
}
.logo a:hover {
  background-color: #eee;
}

img {
  max-height: 100px;
}

#gmbh {
  grid-area: 1/3/2/4;
}

#kg {
  grid-area: 2/3/3/4;
}

#shell {
  grid-area: 3/3/4/4;
}

#bk {
  grid-area: 4/3/5/4;
}

footer {
  margin-top: 0;
  margin-bottom: -10px;
  padding-bottom: 5px;
  height: 100px;
}
footer ul {
  list-style: none;
}
footer li {
  float: left;
  padding-right: 15px;
}
footer a {
  text-decoration: none;
  color: gray;
}

@media (max-width: 900px) {
  main {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 5px 1fr 1fr 1fr 1fr;
    align-items: center;
  }
  .main-logo {
    font-size: 3rem;
    grid-area: 1;
    text-align: center;
  }
  .divider {
    grid-area: 2;
  }
  .logo {
    font-size: 2.5rem;
    text-align: center;
  }
  #gmbh {
    grid-area: 3;
    display: grid;
    height: 100px;
  }
  #kg {
    grid-area: 4;
    display: grid;
    height: 100px;
  }
  #shell {
    grid-area: 5;
  }
  #bk {
    grid-area: 6;
  }
}/*# sourceMappingURL=style.css.map */