/* These rules are shared by About, Coding, Writing, and Illustrations. */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  color: #3d3d3d;
  font-family: system-ui, sans-serif;
  line-height: 1.65;
}

/* A maximum width keeps long text readable; auto margins center the page. */
.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

/* The small handwritten AAYUSHA image is also the link back to index.html. */
.home {
  display: inline-block;
  line-height: 0;
}

.home img {
  height: 34px;
  width: auto;
  display: block;
  transition: transform 150ms ease;
}

.home:hover img,
.home:focus-visible img {
  transform: translateY(-2px);
}

.home:focus-visible {
  outline: 2px dashed #4a4a4a;
  outline-offset: 6px;
}

/* Each inside page uses a scanned handwritten word as its heading. */
header.page {
  margin: 3.2rem 0 2.5rem;
}

header.page img {
  height: 52px;
  width: auto;
  display: block;
}

.placeholder {
  color: #9a9a9a;
  font-style: italic;
}

a {
  color: #3d3d3d;
}
