.ascii-art {
    font-family: monospace;
    font-size:40px;
    white-space: pre; 
    background-image: 
    linear-gradient(to right, red, orange,yellow,green,blue,indigo,violet); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    animation: move 35s linear infinite;
}

@keyframes move {
	to {
		background-position: 1000vh;
	}
}

body {
  background-color: rgb(9, 9, 9);
  font-family: monospace, "lucida console";
  color: white;
}

.coolstuffbutton {
  font-family: monospace, "lucida console";
  font-style: italic;
  color: white;
}

a:hover {
  color: pink;
}

.column {
  float: left;
  width: 33.33%;
  padding: 5px;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}
