* {
  margin: 0;
  box-sizing: border-box;
  border: none;
  padding: 0;
  font-family: inherit;
  color: inherit;
}

:root {
  --block-width: 60rem;
}

body {
  padding: 0 3rem;
  background-color: #f8f8ff;
  font-size: 14pt;
  color: #000e;
}

header {
  padding: 2rem 0;
  text-align: center;
  font-family: "Imperial Script", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 24pt;
}

main {
  margin-right: auto;
  margin-bottom: 5rem;
  margin-left: auto;
  max-width: var(--block-width);
  box-shadow: 0 0.2rem 1rem #0001;
  border-radius: 1rem;
  background-color: #fff;
  padding: 4rem 6rem;

  p {
    margin-bottom: 1em;
    text-indent: 0.75em;
    line-height: 1.5em;
  }

  hr {
    margin-bottom: 1em;
    border-top: 1px solid #ccf;
  }

  h2 {
    margin-bottom: 1em;
  }

  h3 {
    margin-bottom: 1em;
  }

  img {
    display: block;
    margin-right: auto;
    margin-left: auto;
    max-width: 30rem;
    max-height: 30rem;
  }
}
