/* Modern minimal CSS reset */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

/* Color scheme variables */
:root {
  --bg-color: #f5e6d3;
  --text-color: #000000;
}

body.dark-mode {
  --bg-color: #2a1515;
  --text-color: #e0e0e0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "Andale Mono", "AndaleMono", "Consolas", "Monaco", "Courier New", monospace;
}

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

area {
  cursor: pointer;
}

#view {
  max-width: min(90vw, 15rem);
  padding: 0.625rem;
  text-align: center;
}

h1 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

img {
  padding: 0.625rem 0;
  height: auto;
}


