@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans&display=swap");
@import url("https://fonts.googleapis.com/css?family=Orbitron:wght@400;800&display=swap");
@import url("https://fonts.googleapis.com/css?family=Fira+Code:wght@400;700&display=swap");

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  background: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

nav {
  display: flex;
  max-width: 800px;
  margin: 0 auto;
  column-gap: 1rem;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  color: #04d9ff;
  font-size: 1.5rem;
  padding: .5rem 0;
}
nav div:first-child {
  margin-right: auto;
}
nav a {
  text-decoration: none;
  color: #04d9ff;
}
nav a:hover {
  color: #d9ff03;;
}
