@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500&display=swap');

body {
  display: grid;
  justify-items: center;
  align-items: center;

  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  min-height: 100vh;

  margin: 0;
  padding: 0;

  font-family: 'Ubuntu', sans-serif;
  font-size: 2rem;
  color: #aaaaaa;

  background-color: #202020;
  box-shadow: inset 0 0 100vmax 0 black;
  text-shadow: 0.2rem 0.2rem black;
}

a {
  text-decoration: none;
  color: #eeeeee;
}

a:hover {
  text-shadow: #dddddd 0 0 .25em;
}

h1 {
  font-size: 4rem;
  margin: 2%;
}

div {
  align-self: start;
  text-align: center;
  margin: 0.5em 0;
}

nav {
  display: inline-block;
}

nav ul {
  padding: 0;
  margin: 0;
}

nav li {
  list-style-type: none;
  display: inline-block;
}

nav li:not(:last-child)::after {
  content: ' | '
}

li img {
  height: 1em;
}

.splash {
  max-width: 80vw;
  max-height: 70vh;
}

.fancy {
  background: #FFE604;
  background: linear-gradient(to bottom left, #FFE604 0%, #FF7901 59%, #FF01BB 84%);
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
