/* makes sizing simpler */
* {
  box-sizing: border-box;
}

html {
  hanging-punctuation: first last;
}

/* min body height */
body {
  min-height: 100svh;
}

/* responsive images/videos */
img,
picture,
svg,
video {
  /* display: block; */
  max-width: 100%;
}

/* Improved heading in supported browsers */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

.title {
  font-size: 2.5rem;
}

.subtitle {
  margin: 0;
  font-size: 1.5rem;
  text-align: center;
}

/* improve readability with max-width on paragraphs and lists */
/* prevent orphans in supported browsers */
p,
li {
  /* max-width: 75ch; */
  max-width: 80ch;
  margin-bottom: 2rem;
  text-wrap: pretty;
}
