/* Josh's Custom CSS Reset */
/* https://www.joshwcomeau.com/css/custom-css-reset/ */
/* (with minor updates from community versions seen in 2024–2025) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  height: 100%;

  text-size-adjust: 100%;
}

body {
  min-height: 100%;
  line-height: 1.5;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus-visible {
  outline: 3px solid oklch(80% 0.15 200);
  outline-offset: 3px;
}
/* ──────────────────────────────────────── */

@font-face {
  font-family: "Moirai One";
  src: url("../fonts/MoiraiOne-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;

  background: linear-gradient(
    321deg,
    oklch(0.2 0.0445 133.94),
    oklch(0.3 0.0445 133.94),
    oklch(0.4 0.0445 133.94),
    oklch(0.5 0.0445 133.94)
  );
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  color: oklch(80% 0.0445 133.94);
}

div.a {
  height: 100vh;
}

h1 {
  font-family: "Moirai One", system-ui, sans-serif;
  font-weight: 400;
  font-size: 70px;
  line-height: 50px;
}

h2 {
  font-family: "Courier New", Courier, monospace;
  font-size: 20px;
}

p {
  font-family: "Courier New", Courier, monospace;
  font-size: 20px;
}

header {
  background-color: #114a30;
  font-family: "MoiraiOne", system-ui;
}

footer {
  background-color: #556b2f;
  font-family: "Monospace";
}
