/*
 * Cruel - horizontal strip
 * Endless scroll through dress rehearsal
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: #0a0a0a;
  overflow-x: auto;
  overflow-y: hidden;

  /* Hide scrollbar but keep functionality */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

.strip {
  display: flex;
  align-items: center;
  height: 100dvh;
  padding: 30vh 4rem;
  gap: 3px;
}

.strip img {
  height: 100%;
  width: auto;
  flex-shrink: 0;
  display: block;
}
