body {
  max-width: 55rem;
  margin: 0 auto;
  background-color: dodgerblue;
}

header,
main {
  background-color: blanchedalmond;
  padding: 0 1.5rem;
}

html {
  position: relative;
}

html::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 10rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  pointer-events: none;
  z-index: -1;
}

header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header img {
  height: 3rem;
}

h1 {
  font-family: "Jacquard 12", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
}

p,
ul,
ol {
  margin-bottom: 1em;
  line-height: 1.5;
}
