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

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #f3eee5;
}

.splash {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
}

.splash__picture {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.splash__image {
  display: block;
  width: auto;
  max-width: 100vw;
  height: auto;
  max-height: 100vh;
  user-select: none;
  -webkit-user-drag: none;
}
