@font-face {
  font-family: "hn";
  src: url("hn.woff2") format("woff2");
}

* {
  margin: 0;
  box-shadow: border-box;
}

:root {
  --s: #111213;
  --t: #fcfbf8;
  --a: #f05;

  --g: 1rem;

  --tf: cubic-bezier(0.4, 0.2, 0.3, 1);
  --td: 200ms;
}

body {
  font-family: "hn", Arial, Helvetica, sans-serif;
  background: var(--s);
  color: var(--t);
}

section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

svg {
  width: 5rem;
}

p {
  text-transform: uppercase;
  margin-top: var(--g);
}

a {
  color: inherit;
  opacity: 0.2;
  transition: all var(--td) var(--tf);
}

@media (hover: hover) {
  a:not(:hover) {
    text-decoration: none;
  }
  a:hover {
    opacity: 0.6;
  }
}
