*{
  font-family: Inter;
}

body{
  margin:0px;
  background-color: red;
}

.navbar ul{
  list-style-type: none;
  background-color: hotpink;
  padding: 0px;
  margin: 0px;
  overflow: hidden;
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

.navbar a{

  color: white;
  text-decoration: none;
  padding: 15px;
  display: block;
}

.navbar a:hover{
  background-color: white;
  color: hotpink;
}

.navbar li{
  float: left;
}

pre{
  text-align: center;
  font-family: monospace;
  
  text-shadow: #FC0 1px 0 10px ;
}










/* Core functionality */
#animated-text-strip {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  overflow: hidden;
}

#animated-text-strip .marquee {
  white-space: nowrap;
  animation: marquee 5s linear infinite;
  max-width: none;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100%, 0);
  }
}

/* Styles for the sake of the demonstration */
#animated-text-strip {
  background: black;
  padding: 1rem 0;
}

.marquee {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
}

