@keyframes ass {
  0% {
      filter: hue-rotate(1deg);
  }
  50% {
      filter: hue-rotate(180deg);
  }
  100% {
      filter: hue-rotate(360deg);
  }
}

body {
	animation: ass 3s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards infinite;
  	background: #020202;
    color:white;
}

small.formerly {
	font-size: 0px;
}

small.formerly:before {
	font-size: 0px;
  	content: "DameDaNeSpace is better";
    font-size: small;
}

#siteTitle:after {
    content: " is shit";
}