:root {
  color-scheme: light;
  background: #eeeadc;
}

* {
  box-sizing: border-box;
}

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

body {
  background: #eeeadc;
  font-family: Georgia, "Times New Roman", serif;
}

.home {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #eeeadc;
}

.hero-image {
  display: block;
  width: min(100vw, 2560px);
  height: auto;
  max-height: 100vh;
  object-fit: contain;
}

@media (max-width: 760px) {
  .home {
    align-content: start;
    min-height: 100svh;
  }

  .hero-image {
    width: 100vw;
    max-height: none;
  }
}
