:root {
  --color-accent: #d3dfb8;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  color-scheme: light;
  font-family: "monospace";
  height: 100%;
  font-size: 12px;
}

body {
  height: 100%;
}

.container {
  max-width: calc(1200px - 12px);
  margin: 0 auto;
  padding: 0 12px;
}

h1 {
  font-size: 3rem;
  line-height: 5rem;
}

p {
  font-size: 1.3rem;
}

@media screen and (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 2000px) {
  html {
    font-size: 20px;
  }
}
