/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: white;
  font-family: "Lucida Console", "Courier New", monospace;
}
a {
  color: chartreuse;
}
a:hover, a:active {
  background: indigo;
  color: greenyellow;
}
a:visited {
  color: goldenrod;
}

.marquee {
	/*border: 2px solid red ;*/
	display: flex ;
	overflow: hidden ;
	white-space: nowrap ;
	/* width: 100% ; */
}
.marquee__item {
	animation-duration: 6s ;
	animation-iteration-count: infinite ;
	animation-name: marquee-content ;
	animation-timing-function: linear ;
	/*padding: 5px 15px 5px 15px ; */
}
.marquee:hover .marquee__item {
	animation-play-state: paused ;
}

/**
* BOTH of the marquee items are going to be translating left at the same time.
* And, once each of them has translated to -100%, they will both snap back into
* place, making it seem as if they are continuously scrolling.
*/
@keyframes marquee-content {
	from {
		transform: translateX( 0% );
	}
	to {
		transform: translateX( -100% );
	}
}

@media screen and (min-width: 800px) {
    body {
      margin-left: 5%;
      margin-right: 5%;
    }
}