* {
  box-sizing: border-box;
}

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

body {
  background: #090706;
  overflow: hidden;
}

.coming-soon {
  width: 100vw;
  height: 100dvh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #090706;
}

.poster-wrap {
  width: 100%;
  height: 100%;
  display: block;
}

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

@media (max-width: 600px) {
  .poster {
    object-fit: cover;
    object-position: center center;
  }
}
