.bauchbinde {
width: 100%;
padding: 1vh 0;
z-index: 1000;
position: fixed;
display: flex;
align-items: center;
bottom: 0px;
  background: rgb(220, 220, 220);
  color: white;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;	

}

.lauftext {
  width: max-content;
animation: laufen 25s linear infinite;
}


.HomeLink:hover {
  color: rgb(240, 240, 240);
  transition: color 0.1s ease-in-out;
}


/*hover stoppt animation 
.bauchbinde:hover .lauftext {
  animation: laufen 80s linear infinite;
}
*/

.lauftext p{
	color: white;
  font-size: 0.75em;
  letter-spacing: -0.05em;
}

.link_bauchbinde p{
	color: black;
}

@keyframes laufen {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100%); }
}

@media screen and (max-width: 700px) {
  .lauftext p{
  font-size: 8vw;
    letter-spacing: -0.45vw;
}

}