:root {
  color-scheme: light;
  --title: #d40000;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #fff;
  color: #18222c;
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  width: min(902px, calc(100vw - 32px));
  margin: 46px auto 40px;
  text-align: center;
}

h1 {
  margin: 0 0 20px;
  color: var(--title);
  font-family: "Comic Sans MS", "Segoe Print", "Bradley Hand ITC", cursive;
  font-size: clamp(44px, 5.1vw, 82px);
  font-style: italic;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: skewX(-6deg);
  white-space: nowrap;
}

.family-photo {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

@media (max-width: 960px) {
  .page {
    margin-top: 28px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(34px, 12vw, 52px);
    white-space: normal;
  }
}
