html,body{
  height: 100%;
}

body{
  font-family: monospace, serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  margin: 0 auto;
  padding: 0;
  font-size: 14px;
  color: #222;
}

*{box-sizing: border-box;}

.ad{
  position: fixed;
  top: 0;
  width: 100%;
  background: blue;
  color: white;
  text-decoration: none;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

section{
  height: 100%;
}

.brand{
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -32px 0 0 -68px;
}

footer{
  padding: 30px;
  text-align: center;
}

.imprint{
  position: fixed;
  top: 36px;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: white;
  transform: translateY(100%);
  transition: all .4s ease;
  user-select: none;
  visibility: hidden;
  padding: 25px 0;
  line-height: 1.25em;
  overflow-y: scroll;
}
.imprint.show{
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

#imprintX{
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}

.container{
  max-width: 840px;
  padding: 0 20px;
  margin: 0 auto;
}

.hidden {
  display: none;
}

#cookie-info {
  z-index: 2;
  background-color: #9ca1ad;
  color: #191b1f;
  position: fixed;
  top: 100vh;
  left: 0;
  padding: 10px 60px 10px 10px;
  transform: translateY(-100%);
  width: 100%;
}

#cookie-info .close {
  position: absolute;
  top: 50%;
  transform: translate(-100%, -50%);
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  left: 100vw;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  body{
    width: auto;
  }
}
