* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

body {
  font: 300 16px/1.5 -apple-system, helvetica, sans-serif;
  text-align: center;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact {
  margin: 64px auto;
}

.ids {
  margin-top: 16px;
  font-size: .75em
}

img#portrait {
  width: 128px;
  height: 128px;
  margin-bottom: 16px;
  border-radius: 1000px;
}

h2 {
  font-size: 1.25em;
  font-weight: bold;
}

a {
  display: inline-block;
  font-size: 1em;
}

a:link,
a:visited,
a:active {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #999;
}


/*   Animations   */

body {
  animation: body_fade_in 1s ease;
  -webkit-font-smoothing: antialiased;
}

@keyframes body_fade_in {
  from { opacity: 0; transform: translateY(1em); }
  to { opacity: 1; }
}

a:link,
a:visited,
a:active {
  animation: link_fade_out 0.25s ease;
}

@keyframes link_fade_out {
    from { color: #999; }
    to {color: #333; }
}

a:hover {
  animation: link_fade_in 0.25s ease;
}

@keyframes link_fade_in {
    from { color: #333; }
    to {color: #999; }
}

