/* ============================================================
   link styling
   ============================================================ */
a:link {
  text-decoration: none;
  color: white;
}

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

a:hover {
  text-decoration: none;
  font-style: italic;
  color: #FFFFFF;
  font-weight: bold;
}

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

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000;
}

* {
  font-family: "MS Gothic", "MS PGothic", monospace;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

h1 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5D5D5D;
  margin: 0 0 8px 0;
}

p {
  font-size: 14px;
  color: #5D5D5D;
  margin: 0;
}