/* Aiello Cheese — coming soon page.
   The page's only job is to show coming-soon.png fully, centered, never cropped. */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  /* Cream matches the graphic's own background so the letterboxed area blends in. */
  background: #F7F5EF;
  overflow: hidden;
}

main {
  height: 100vh;
  height: 100dvh; /* accounts for mobile browser chrome */
  display: flex;
  align-items: center;
  justify-content: center;
}

img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
