body {
  background-color: black;
}

p, h1, h2, label {
  color: white;
}

a {
  color: white;
  text-decoration: none;
}

#rotate {
		-webkit-animation: rotation 200s infinite linear;
}

@-webkit-keyframes rotation {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(359deg);
		}
}