:root {
  --navy: #071a33;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--navy); }
body { font-family: Georgia, "Times New Roman", serif; }

.landing {
  width: 100%;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-x: hidden;
}

.landing-art {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1920px;
  margin: 0 auto;
}

.accessible-summary {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 1536px) {
  .landing-art {
    min-height: 100vh;
    object-fit: cover;
    object-position: top center;
  }
}

@media (max-width: 700px) {
  .landing {
    min-height: auto;
  }
  .landing-art {
    width: 150%;
    max-width: none;
    transform: translateX(-16.66%);
  }
}
