.marqueeh {
  width: 100%;
  line-height: 30px;
  background-color: white;
  color: black;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
 
}
.marqueeh p {
  display: inline-block;
  padding-left: 100%;
  animation: marqueeh 40s linear infinite;
  
}
@keyframes marqueeh {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}





.scroll-box{
  height:400px;
  overflow:hidden;
  position:relative;
}
.scroll-text{
  position:absolute;
  animation:scroll-up 10s linear infinite;
}
@keyframes scroll-up{
  0%{top:100%;}
  100%{top:-160%;}
}
