body {
	background-color: black;
	color: #ff001d;
    font-family: "Work Sans", Monaco, monospace;
}

.column {
	background-color: rgb(14, 4, 39);
    background-color: rgba(14, 4, 39, 0.5);
    max-width: 680px;
	padding: 1.4em;
	margin: 0 auto 0 auto;
}

.column img {
    max-width: 50%;
    max-height: 50%;
}

.texthl {
	background-color: rgb(41, 18, 101);
    background-color: rgba(41, 18, 101, 0.7);
	padding: 1em;
}

div.scrolling-limit{
  overflow: hidden;
  white-space: nowrap;
  padding: 1em;
}

div.scrolling{
  position: relative;
  -webkit-animation: scroll 120s infinite linear;;
  -moz-animation: scroll 120s infinite linear;
  -o-animation: scroll 120s infinite linear;
  animation: scroll 120s infinite linear;
}

@keyframes scroll{
    0%   {left: 100vw;}
    100% {left: -800vw;}
}
@-webkit-keyframes scroll{
    0%   {left: 100vw;}
    100% {left: -800vw;}
}