/* ART Show MOVIE - Fullscreen landing page
   L'immagine intera rimane sempre centrata nella finestra.
   Il pannello rettangolare con il logo resta quindi esattamente al centro.
*/

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  min-height: 100dvh;
}

.fullscreen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  user-select: none;
  -webkit-user-drag: none;
}

/*
  object-fit: contain è fondamentale:
  - l'immagine viene ridimensionata mantenendo le proporzioni;
  - non viene tagliata;
  - il suo centro coincide sempre con il centro della finestra;
  - su desktop, tablet e smartphone il pannello con il logo
    rimane quindi sempre centrato.
*/
