:root {
  color-scheme: dark;
  --background: #000000;
  --surface: #ffffff;
  --text: #32CD32;
  --muted: #55625a;
  --accent: #176b4d;
  --accent-hover: #0f5039;
  --max-width: 72rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
}

center {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(0.5rem, 2dvh, 1.5rem);
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: clamp(0.75rem, 3dvh, 2rem);
}

center p {
  min-height: 0;
  margin: 0;
}

center img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

a {
  color: inherit;
}

.typewriter-line {
  min-width: 0;
  font-size: clamp(0.75rem, min(4vw, 4dvh), 2rem);
  overflow-wrap: anywhere;
}

#typewriter {
    color: #32CD32;
    font-family: "Segoe UI", sans-serif;
}

.cursor {
    animation: blink .8s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}
