@font-face {
  font-family: "Atari ST";
  src: url("./fonts/AtariST8x16SystemFont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-weight: 400;
  text-wrap: pretty;
}

body {
  background-color: #111;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: monospace;
  color: #fff;
  font-size: 10px;
}

h1 {
  font-family: "Atari ST", monospace;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 8px;
  margin-right: -2px;

  @media screen and (max-width: 374px) {
    font-size: 24px;
  }
}

p {
  line-height: 16px;
}

a {
  color: #00ff00;
  text-decoration: none;
  pointer-events: all;
}

#info {
  position: fixed;
  top: 0;
  right: 0;
  text-align: right;
  z-index: 100;
  padding: 16px;
  filter: drop-shadow(0px 0px 3px #000);
  user-select: none;
  pointer-events: none;
}