body {
  font-family: 'Monaco', monospace;
  background-color: #f7f6f3;
}

a:link {
  color: #FF6B6B;
  text-decoration: none;
}

a:visited {
  color: #FF6B6B;
}

a {
  display: inline-block;
  transition: transform 0.2s ease;
}

a:hover {
  text-decoration: none;
  transform: translate(2px, -3px);
}

a[target="_blank"]::after {
  content: " ↗";
  transition: transform 0.2s ease;
  display: inline-block;
}

a[target="_blank"]:hover::after {
  transform: translate(3px, -4px);
}

/* everything below this copied straight from bettermotherfuckingwebsite.com */

body {
  margin: 40px auto;
  max-width: 650px;
  line-height: 1.6;
  font-size: 18px;
  color:#444;
  padding: 0 10px;
}

h1,h2,h3{line-height:1.2}

hr{margin-top:36px}