body {
  margin: 0;
  font-family: sans-serif;
  color: #19223A;
  line-height: 1.5;
}

.mainBox {
  min-height: 100vh;
  display: flex;
}

.leftStripe, .rightStripe {
  flex-grow: 2;
  flex-shrink: 2;
}

.leftStripe {
  background-color: #19223A;
  width: 0;
}

.rightStripe {
  background-color: #fff;
  width: 0;
}

.contentStripe {
  width: 100%;
  max-width: 800px;
  background-color: #fff;
  flex-grow: 10;
  position: relative;
  padding-top: 120px;
}

.logo {
  overflow: hidden;
  max-width: 100%;
  height: auto;
  position: fixed;
  z-index: 1000;
  top: 0;
}
.logo .writing {
  background-color: #19223A;
  color: #F4CD05;
  font-size: 3em;
  font-weight: bold;
  padding-top: 20px;
}
.logo .underWriting {
  border-top: 50px solid #19223A;
  border-right: 800px solid transparent;
}

.rightHeader {
  overflow: hidden;
  width: 40%;
  position: fixed;
  top: 0;
  left: 70%;
  z-index: 1000;
}
@media (max-width: 500px) {
  .rightHeader {
    display: none;
  }
}

.rightHeader .rightYellow {
  width: 100%;
  background-color: #F4CD05;
  height: 72px;
}
.rightHeader .rightYellowWedge {
  border-top: 50px solid #F4CD05;
  border-right: 800px solid transparent;
}
.teaserPicture {
  background-image: url("../gfx/principal.png");
  background-size: auto 100%;
  background-position: top;
  background-repeat: no-repeat;
  /*background-attachment: fixed;*/
  height: 40vh;
  width: 100%;
}

h1, h2, h3, p {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 800px) {
  .writing {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 350px) {
  .writing {
    font-size: 2em !important;
  }
}

@media (max-width: 250px) {
  .writing {
    font-size: 1em !important;
  }
}

.anIcon {
  font-size: 3em;
}

.flyerTeaser {
  display: flex;
  align-items: center;
}

.flyerTeaser a {
  text-decoration: none;
  padding: 20px;
  border: 1px solid #19223A;
  border-radius: 5px;
  margin: 0 auto;
  color: #19223A;
}

.flyerTeaser a:hover {
  background-color: #19223A;
  color: #F4CD05;
}

.footer {
  background-color: #19223A;
  color: #F4CD05;
  padding: 10px;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 300%;
  left: -100%
}
.footer a {
  color: #F4CD05;
}