/* Colors and illustration from the application's homepage. No remote assets. */
* { box-sizing: border-box; }
html {
  min-height: 100%;
  background: #f2f2f2;
  color: #444;
  font-family: "proxima-soft", sans-serif;
  line-height: 1.5;
}
body { margin: 0; }
header {
  position: relative;
  background: #b8334d;
  color: #fff;
  box-shadow: 0 0 7px rgb(0 0 0 / 17%);
}
.brand {
  display: inline-block;
  padding: 12px 20px;
  color: inherit;
  font-size: 32px;
  font-weight: normal;
  line-height: 1.5;
  text-decoration: none;
}
.brand span { white-space: nowrap; }
.brand:focus-visible { outline: 2px solid #fff; outline-offset: -6px; }
main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: min(100%, 1080px);
  min-height: 520px;
  margin: 0 auto;
  padding: 64px 40px 0;
}
.message { padding-bottom: 64px; }
h1 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.santa {
  display: block;
  align-self: flex-end;
  flex-shrink: 0;
  width: 319px;
  max-width: 100%;
  height: auto;
}
@media (max-width: 640px) {
  .brand { font-size: 26px; }
  main {
    flex-direction: column;
    min-height: 0;
    gap: 48px;
    padding: 64px 24px 0;
  }
  .message { padding-bottom: 0; text-align: center; }
  .santa { align-self: center; }
}
