/* Change these colors to personalize your page. */
:root {
  --background: #f8f6f0;
  --text: #222820;
  --accent: #456444;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--background);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

main {
  width: 100%;
  max-width: 56rem;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 9vw, 6rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.15;
  overflow-wrap: break-word;
}

h1 span {
  color: var(--accent);
}

/* These styles are ready for any content you add later. */
p {
  max-width: 40rem;
  margin: 1.5rem auto 0;
}

a {
  color: var(--accent);
  text-underline-offset: 0.2em;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto;
}
