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

* {
  box-sizing: border-box;
}

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

body {
  background: #f7faf7;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  display: grid;
  min-height: 100svh;
  place-items: start center;
}

.site-image {
  display: block;
  width: min(100%, 941px);
  height: auto;
}

@media (min-width: 1100px) {
  .page {
    padding-block: 24px;
  }

  .site-image {
    border-radius: 2px;
    box-shadow: 0 18px 60px rgb(15 35 25 / 10%);
  }
}
