body {
  background-color: darkslategray;
  color: white;
  max-width: 800px;
  margin: auto;
  padding: 10px;
  font-family: sans-serif;
}

p, li {
  line-height: 1.6em;
}

h1 {
  text-align: center;
}

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

a:hover {
  color: goldenrod;
}

code {
  background-color: slategray;
}

/* fooling around */
.epic {
  animation: wee 1s ease-in-out;
  transition: transform .3s;
}

.epic:hover {
  transform: scale(1.2);
}

@keyframes wee {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}

