@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400,700&display=swap');


:root {
  --color-brand: #40e0d0;
}

html {
  font-family: "IBM Plex Mono", sans-serif;
  text-transform: lowercase;
  font-feature-settings: 'calt' 1;
  font-size: 15px;
  margin: 0;
  padding: 0;
  height: 100%;
  color: #000;
  line-height: 1.75em;
  background-color: #fff;
  font-weight: 400;
}

body {
  display: flex;
  margin: 0;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.unit {
  padding-bottom: 10px;
  padding-right: 10px;
}

h1 {
  font-weight: 900;
  font-size: 2.5em;
  line-height: 1em;
  margin: 0;
}

p {
  margin: 0.25em 0 0;
  font-weight: 300;
}

ul {
  margin: 1em 0 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  /*color: #6dc7b6;*/
  color: var(--color-brand);
}

a:hover {
  background-color: var(--color-brand);
  color: #FFF;
}

@media (prefers-color-scheme: dark) {
  html {
    background-color: #000;
    color: #fff;
  }
}
