*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  background-color: #fcdebb; /* sampled from Desktop.png left edge */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh; /* accounts for mobile browser chrome */
}

picture {
  display: flex;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
}

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

@media (max-width: 768px) {
  body {
    background-color: #fddfb9; /* sampled from Mobile.png left edge */
  }
}
