:root {
  color-scheme: dark;
  background: #000;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #000;
}

.landing {
  display: grid;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  place-items: center;
  background: #000;
}

.landing__picture,
.landing__artwork {
  display: block;
  width: 100%;
  height: 100%;
}

.landing__artwork {
  object-fit: contain;
  object-position: center;
}
