#desktop {
  display: none;
}
main {
  display: grid;
  grid-template-areas:
    "myHeader"
    "section"
    "aside"
    "footer";
  grid-template-rows: 60px auto auto auto;
  min-height: 100%;
}
section {
  max-width: 640px;
  width: 95%;
}
aside {
  margin: 0 auto;
  padding: 0.5em;
  display: inline-block;
  width: 80%;
}
#mobile-nav {
  display: none;
  width: 100%;
  background-color: var(--grey);
  position: absolute;
  margin-top: 60px;
  padding-left: 50%;
  overflow-y: scroll;
}
#mobile-nav ul {
  list-style-type: none;
  font-family: Copperplate;
  text-transform: uppercase;
  padding: 0 2em;
}
#mobile {
  grid-area: myHeader;
  background: rgba(0,0,0,0) url(/images/balken_60.jpg) repeat-x;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  z-index: 1;
}
#mobile #title {
  color: var(--nearlyBlack);
  font-family: 'Courier';
  font-size: 27px;
  margin-top: 20px;
  padding-left: 20px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
/* startpage */
#mobile-container {
  display: grid;
  grid-template-areas:
    "myHeader"
    "content";
  grid-template-rows: 60px auto;
  min-height: 100%;
}
article {
  font-size: 1.2em;
}
/* cookies */
.video__notice {
  padding: 10% 5% 55% 5%;
  font-size: 12px;
  line-height: 1.1em;
}
