@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Bebas+Neue:400");
* {
  box-sizing: border-box;
}
.component-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  pointer-events: none;
}
.component-wrapper a {
  text-decoration: none;
  display: contents;
  pointer-events: auto;
}
.component-wrapper a *,
.component-wrapper input,
.component-wrapper video,
.component-wrapper iframe {
  pointer-events: auto;
}
.component-wrapper.not-ready,
.component-wrapper.not-ready * {
  visibility: hidden !important;
}
.hidden,
.hidden * {
  visibility: hidden;
  pointer-events: none;
}

.listeners-active,
.listeners-active * {
  pointer-events: auto;
}

.screen * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
.screen a {
  text-decoration: none;
  display: contents;
}
.screen div {
  -webkit-text-size-adjust: none;
}
.screen textarea:focus,
.screen input:focus {
  outline: none;
}
.valign-text-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.valign-text-left{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}
.valign-text-middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.headline{
  position: absolute;
  width: 100%;
  text-align: center;
  top: 1em;
}
.navigation{
  width: 10%;
  height: 100%;
  position: fixed;
  display: flex;
  background-color: transparent;
  z-index: 1000;
  justify-content: flex-end;
  align-items: flex-start;
}
.navigation > img{
    position: relative;
    top: 50%;
    max-width: 80px;
    opacity: 0.5;
    transition: 100ms ease-in;
}

.navigation > img:hover{
    opacity: 1;
    transition: 200ms ease-out; 
}
.title {
  width: 100%;
  text-align: center;
  background: transparent;
  top:0;
  left:0;
  position: relative;
  }

footer {
  margin-top: 25px;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
}

.content{
  align-content: center;
  width: 1112px;
  margin-left: auto;
  margin-right: auto;
}

.page-title{
  padding: 63px;
  display: flex;
  align-items: center;
  width: 100%;
}


.page-title > h1{
  text-align: center;
  flex: 1 1  70%;
  min-width: 20ch;
  margin-top: auto;
  margin-bottom: auto;
}

.page-title > h2{
  text-align: center;
  flex: 1 1  30%;
  min-width: 15ch;
  margin-top: auto;
  line-height: 40px;
}
.page-title > h5{
  text-align: center;
  flex: 1 1  80%;
  min-width: 28ch;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 0em;
}
.page-title > h6{
  text-align: center;
  flex: 1 1  30%;
  min-width: 24ch;
  margin-top: auto;
  line-height: 0px;
}
.page-title > b{
  text-align: center;
  flex: 1 1  100%;
  min-width: 10ch;
  margin-top: auto;
  margin-bottom: auto;
}
.solo-header{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}

@media only screen and (max-device-width: 600px){
  .solo-header{
    margin-top: 3rem;
  }
 
  .content{
    width: 100%;
  }
  .page-title{
    flex-direction: column;
    margin-bottom: 3rem; 
  }
  .page-title > h1{
    margin-bottom: 1rem;
  }
  .page-title > h1,h2{
    flex: 1 1  100%;
  }

  .page-title > h2{
    line-height: 80px;
  }

  .navigation > img{

  }
}