body {
	background-color: black;
	color: #fc0373;
    font-family: "Work Sans", Monaco, monospace;
}

.column {
	background-color: #330017;
	
    max-width: 680px;
	padding: 6%;
	margin: auto;
	padding-bottom: 8%;
	
	text-shadow: 2px 2px 0px #120008;
	box-shadow: 20px 16px 0px #120008;
	line-height: 200%;
}

.column img {
    max-width: 50%;
    max-height: 50%;
}

.texthl {
	margin: 2em;
}

div.scrolling-limit{
  overflow: hidden;
  white-space: nowrap;
  margin-top: 2em;
  margin-bottom: 3em;
  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;}
}

a:link {
  color: #ff4599;
  background-color: #540026;
  text-decoration: none;
}

a:visited {
  color: #ff4599;
  text-decoration: none;
}

a:hover {
  color: #ff73b2;
  background-color: #540026;
  text-decoration: underline;
}

a:active {
  color: #a8004c;
  background-color: transparent;
  text-decoration: underline;
}