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

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

@keyframes hehe {
  from {
    background-color: slategray;
  }
  to {
    background-color: darkslategray;
  }
}

p:target {
  animation: hehe 2s ease-in-out forwards;
}

h1 {
  text-align: center;
}

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

a:hover {
  color: goldenrod;
}

code {
  background-color: slategray;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 95%;
}

/* 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);}
}
