body {
  background-color: black;
  color: white;
  font-family: system-ui, sans-serif;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
  height: 100vh;
}

/*****************/
/***** Links *****/
/*****************/
a {
    color: #66ccff;
}

a:visited {
    color: #66ccff;
}

a:hover {
    color: #99ddff;
}

