.marquee{
  width: 100%;
  position: relative;
  overflow: hidden;
}

.marqueeContent{
  display: inline-block;
  animation: Scroll 40s forwards linear infinite;
}

h1{
  font-size: 5em;
  white-space: nowrap;
  font-family: 'Roboto';
  font-weight: bold;
  color: White;
   text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
}

@keyframes Scroll {
  0%{transform: translate(0, 0)}
  100%{transform: translate(-100%, 0)}
}