:root {
  --bg: #3b251e;
  --fg: #fe7b10;
}

@font-face {
  font-family: "PrintChar21";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/PrintChar21.woff2") format("woff2");
}

* {
  margin: 0;
  padding: 0;
}
html,
body {
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: var(--bg);
}

body,
p,
h1,
ul,
li {
  font-family: "PrintChar21", ui-monospace, SFMono-Regular, Menlo, Monaco,
    Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
}

body {
  width: auto;
  padding: 2rem;
  font-size: 18px;
  background-image: url(../assets/screen-only.jpg);
  background-size: cover;
  box-shadow: 0px 0px 20rem 5rem rgba(0, 0, 0, 0.4) inset;
}

body,
a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 2px solid var(--fg);
}
a:active {
  background: var(--fg);
  color: var(--bg);
}

h1,
p,
pre,
li {
  margin-bottom: 1rem;
}

h1 {
  display: inline-block;
  background: var(--fg);
  color: var(--bg);
}

ul {
  list-style-type: none;
}
li:before {
  content: "* ";
}
