/* Copyright (c) 2025 Michael Barlow */

:root {
  color-scheme: light dark;
  
  --background-colour: #f4f4f4;
  --text-colour: #1a1a1a;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background-colour: #1a1a1a;
    --text-colour: #e5e5e5;
  }
}

html {
  background-color: var(--background-colour);
  color: var(--text-colour);
}

body {
  font-family: monospace;
  margin: 0 auto;
  max-width: 60em;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

#snippet {
  padding: 1em;
  outline: none;
  flex-grow: 1;

  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

footer {
  padding: 0.6em 1.4em;
  display: flex;
  justify-content: flex-end;
}
