@font-face {
  font-family: "mulish";
  src: url("fonts/mulish-variablefont-wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}
@font-face {
  font-family: "mulish";
  src: url("fonts/mulish-italic-variablefont-wght.ttf") format("truetype");
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
}
@font-face {
  font-family: "victormono";
  src: url("fonts/victormono-variablefont-wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}
@font-face {
  font-family: "victormono";
  src: url("fonts/victormono-italic-variablefont-wght.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 700;
  font-display: swap;
}
@font-face {
  font-family: "twemoji";
  src: url("fonts/twemoji-mozilla.ttf") format("truetype");
  font-display: swap;
}
:root {
  --background: #222222;
  --foreground: #EEEEEE;
}
* {
  box-sizing: border-box;
}
html {
  overflow-y: scroll;
}
body {
  max-width: 700px;
  margin: 0;
  padding: 10px;
  background: var(--background);
  color: var(--foreground);
  font-family: "victormono", "twemoji", monospace;
  font-weight: 400;
  hyphens: auto;
}
main {
  display: grid;
  gap: 10px;
}
p {
  margin: 0;
  padding: 0;
}
a {
  color: var(--foreground);
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
::selection {
  background: var(--foreground);
  color: var(--background);
}