/* Basic HTML reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: monospace;
    background: url('bg.avif') repeat;
    background-size: 64px 64px;
    color: #fafafa;
}

[content] {
  max-width: 800px;
  margin: 0 auto;
  min-height: 100vh;
  background: #0a0a0a;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
}

[pa-8] {
  padding: 1rem 2rem;
}

[hero] {
  border: 2px solid #000;
  border-radius: 8px;
  background: #030303;
  overflow: hidden;
  display: grid;
  place-items: center;
  aspect-ratio: 16/4;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0;
  font-size: 1rem;
  color: #fafafa;
}

[link] {
  margin: 0;
  padding: 0 0 0.5rem;
}

[link] a {
  font-size: 1rem;
  color: #fafafa;
  text-decoration-style: dotted;
  text-decoration-color: #fafafa80;
  text-decoration-thickness: 1px;
}

canvas {
  display: block;
  width: 100%;
  height: auto;
  cursor: none;
}