html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
}

h1, h4,h3, h2, a, h5, p, h6 {font-family: 'Open Sans', sans-serif; font-weight: 300;}

button a {
  font-weight: 600;
  color: black;
}
/* Home Page *********************************************/



.titel h1{
      position: absolute;
      width: 100%;
      height: 62px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 45px;
      text-align: center;
      letter-spacing: 0.155em;
      color: #ADADAD;
      animation: links1 5s forwards, anim2 4s forwards;
}

@keyframes links1 {
  from{
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.titel  img{
  position:  absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}





@keyframes anim2 {
  from{
    left: 20%
  }
  to {
    left: 50%;
  }
}

.titel h4 {
  position: absolute;
width: 170px;
height: 33px;
left: 50%;
transform: translate(-50%, -50%);
font-size: 20px;
text-align: center;
letter-spacing: 0.45em;
animation: anim 8s forwards, oben3 4s forwards;
color: #C8C8C8;

}

@keyframes anim {
  from{
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes oben3 {
  from{
    top: 0;
  }
  to {
    top: 93%;
  }
}


/* Navigation *********************************************/

header {
  width: 100%;
  height: 130px;
  position: fixed;
  z-index: 1;
}

header nav {
  margin-top: 50px;
  float: left;
  margin-left: 50px;
}

header nav ul li {
  float: left;
  margin-left: 25px;
  margin-top: 10px;
  list-style-type: none;
}

.logo {
  position: absolute;
  width: 200px;
  height: 200px;
  float: left;
}

.logo img {
  width: 100px;
  margin: 20px auto auto 50px;
}

/* Main-Logo *********************************************/

.main-logo {
  float: right;
  width: 400px;
  height: 130px;
}


.main-logo img {
  width: 150px;
  float: left;
  animation: 2s oben forwards;
}
@keyframes oben {
  from {
    margin-top: -200px;
  }
  to {
    margin-top: 0;
  }
}

.main-logo h5 {
font-size: 20px;
line-height: 136.19%;
letter-spacing: 0.45em;
justify-content: center;
margin-block-start: 0em;
margin-block-end: 0em;
color: #C8C8C8;
margin-top: 70px;
animation: 2s rechts forwards;
}

@keyframes rechts {
  from {
    margin-left: 500px;
  }
  to {
    margin-left: 200px;
  }
}

@media screen and (max-width: 530px) {
  .main-logo {
    display: none;
  }

}
