#logotext {
  position: relative;
  top: 40px;
  height: 150px;
}
#logotext {
  width: 300px;
  margin-left: calc(50% - 150px);
}

.white {
  padding-top: 100px;
}

.homenav {
  text-align: center;
  padding: 20px 0 40px 0;
}
.homenav a {
  padding: 4px 110px 4px 110px;
  font-size: 1.125em;
  font-weight: 400;
}

@keyframes ticker-kf {
  0% {
    transform: translate3d(0, 0, 0);
  }

  /* Breite ausrechnen: 

500
450
650
400 
350 
550
400  -> 3300


   */

  100% {
    transform: translate3d(-3300px, 0, 0);
  }
}

.img-ticker {
  animation: ticker-kf 40s linear infinite;
}

*, ::after, ::before {
  border-width: 0;
}
.overflow-hidden {
  overflow: hidden;
}

.w-64 {
  width: auto;
  height: 200px;
}
.mx-4 {
  margin-left: 0;
  margin-right: 0;
}
.flex {
  display: flex;
}

@media screen and (min-width:610px) {  
      #logotext {
        width: 400px;
        margin-left: calc(50% - 200px);
      }
      .lightgrey {
  height: calc(100vh - 530px);
}
.homenav a {
  padding: 4px 20px 4px 20px;
  font-size: 1.125em;
}

  }