@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');
* {
  box-sizing:  border-box;
  font-family: "Fira Code";
}

h1 {
  text-align: center;
}

html, body {
  height: 100%;
}

body {
  color: #CCC;
  background-color: #101010;
  display: flex;
  flex-direction: column;
}

main {
  max-width:  80%;
  align-self: center;
}

a:link {
  color: #7FC;
}
a:visited {
  color: #C7F;
}
