/* Base Reset & Layout */
body {
  margin: 0 auto;
  padding: 2rem;
  font-family: system-ui, sans-serif;
  background-color: #fff;
  color: #111;
  max-width: 70ch;
  line-height: 1.6em;
  /* display: flex; */


  /* flex-direction: column; */
  /* align-items: center; */
  /* text-align: center; */
  min-height: 100vh;
  box-sizing: border-box;
  /* font-size: 2.986rem; */
}
 fieldset:not(:first-child){
   margin-top: 2ch;
 }

/* Heading */
h1 {
  /* font-size: clamp(2rem, 5vw, 3rem); */
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Paragraph */
p {
  /* max-width: 60ch; */
  /* font-size: clamp(1.1rem, 4vw, 1.25rem); */
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* List layout: vertical by default */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 1rem;
  /* width: 100%; */
  /* max-width: 320px; */
}

li {
 margin: 0.5ch 0;
}

/* Subtle link style */
li a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  /* color: #111d9; */
  /* font-size: clamp(1.1rem, 4vw, 1.25rem); */
  transition: color 0.2s ease;
}

