	ul {
	  list-style-type: none;
	  margin: 0;
	  padding: 0;
	  overflow: hidden;
	  background-color: #313638;
	}

	li {
	  float: left;
	}

	li a {
	  display: block;
	  color: white;
	  text-align: center;
	  padding: 14px 16px;
	  text-decoration: none;
	  font-family: 'Monaco', 'Courier New', monospace;
	  font-size: 24px
	}

	li a:hover {
	  background-color: #111;
	}

	.marquee {
	  display: flex;
	  overflow: hidden;
	  white-space: nowrap;
	  width: 100%;
	  position: relative;
	  font-size: 18px
	}

	.marquee span {
	  display: inline-block;
	  min-width: 100%;
	  animation: marquee 20s linear infinite;
	  font-family: 'Lucida Console', 'Courier New', monospace;
	}

	@keyframes marquee {
	  from { transform: translateX(0); }
	  to { transform: translateX(-100%); }
	}
