:root {
  --bg: #0b0b0c;
  --bg2: #252528;
  --fg: #e6e6e6;
  --accent: #00ff9c;
  --muted: #9a9a9a;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  line-height: 1.5;
  overflow:scroll;
}

body {
  background-color: transparent;
}

main {
  background: var(--bg2);
  border-radius: 15px;
  border-width: 5px;
  border-color: var(--muted);
  border-style: outset;
}

main {
  max-width: 900px;
  padding: 1.5rem 1.5rem;
  margin: 1.5rem auto;
}

.banner {
  font-size: 2vmin;
  font-size: calc(min(2vmin,1rem));
  line-height: 1;
  white-space: pre;
  color: var(--fg);
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

h1 {
  font-size: 3rem;
  margin: 0 0 0.3rem 0;
  letter-spacing: -0.04em;
}

h1 span {  
  background: linear-gradient(125deg, rgba(213, 96, 169, 1) 0%, rgba(213, 96, 169, 1) 14%, rgba(229, 175, 206, 1) 14%, rgba(229, 175, 206, 1) 28%, rgba(255, 255, 255, 1) 28%, rgba(255, 255, 255, 1) 43%, rgba(86, 207, 248, 1) 43%, rgba(86, 207, 248, 1) 57%, rgba(255, 255, 255, 1) 57%, rgba(255, 255, 255, 1) 71%, rgba(229, 175, 206, 1) 71%, rgba(229, 175, 206, 1) 85%, rgba(213, 96, 169, 1) 85%, rgba(213, 96, 169, 1) 100%);
  
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 1rem;
  margin-top: -1rem;
  text-indent: 3rem;
  font-style: italic;
}

section {
  margin-bottom: 2.5rem;
}

h2 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  position: relative;
  padding-left: 1.5em; /* space for the "> " */
}

ul li::before {
  content: "> ";
  position: absolute;
  left: 0;
  color: var(--accent);
}


nav {
  margin-bottom: 3rem;
}


nav a {
  margin-right: 1.5rem;
}


a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  --text-decoration: underline;
  background: #e6e6e6;
  color: #424249;
}

body::after {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

/*
body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
  to bottom,  
  rgba(255,255,255,0.06),
  rgba(255,255,255,0.06) 10px,
  transparent 10px,
  transparent 30px
  );
  mix-blend-mode: overlay;
}

body::after {
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 5px, 6px 100%;
}
*/



footer {
  margin-top: 4rem;
  font-size: 0.9rem;
  color: var(--muted);

  bottom: 0;
}