html {
  height: 100dvh;
}

body {
  /* You should check the contrast with https://dequeuniversity.com/rules/axe/4.9/color-contrast before deploy */
  background-color: #09092f;
  height: 100dvh;
}

a {
  color: powderblue;
  text-decoration: none;
}

#index {
  height: 100dvh;
  text-align: center;
  display: grid;
  grid-template:
    'main' 95dvh
    'footer' 5dvh;
  font-family: Inconsolata, monospace;
}

.main {
  grid-area: main;
  align-content: center;
  font-size: large;
  list-style: none;
  text-align: center;
  width: 100%;
}

.footer {
  grid-area: footer;
  align-content: end;
  font-size: x-small;
  position: sticky;
  top: 100%;
  margin-right: 0.2rem;
  text-align: right;
  font-family: 'Noto Emoji', sans-serif;
}
