@font-face {
  font-family: 'Monocraft';
  src: url('../media/Monocraft-otf/Monocraft.otf') format('opentype');
}
* {
  box-sizing: border-box;
  font-family: 'Monocraft', monospace;
}
html, body {
  margin: 0;
  padding: 0;
  background: var(--base);
  color: var(--text);
}
main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.terminals {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 90%;
  max-width: 700px;
}
.terminal {
  background: var(--mantle);
  border-radius: 8px;
  padding: 12px 14px;
  box-shadow: 0 0 0 1px var(--surface0);
}
.terminal p {
  margin: 4px 0;
  line-height: 1.4;
}
.highlight {
  color: var(--pink);
}
.highlight2 {
  color: var(--blue);
}
a {
  color: var(--lavender);
  text-decoration: none;
  margin-right: 10px;
}
a:hover {
  text-decoration: underline;
}
.welcome {
  text-align: center;
  margin: 24px 0;
}
.welcome img {
  max-width: 700px;
  width: 100%;
  height: auto;
  display: inline-block;
}
.discord-presence {
  width: 100%;
  max-width: 420px;
  margin-top: 8px;
}
.steam-frame {
  width: 100%;
  max-width: 600px;
  height: 260px;
  margin-top: 8px;
  border: 0;
  display: block;
}
.buttons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
  font-size: 0;
  align-items: flex-start;
}
.buttons-grid a {
  display: flex;
  line-height: 0;
  margin-right: 0;
  padding: 0;
}
.buttons-grid img {
  image-rendering: pixelated;
  display: block;
}
@media (max-width: 600px) {
  .terminals {
    width: 95%;
  }
}
