html {
  box-sizing: border-box;
  font-size: 12px;
  background: #ffc600;
}

.photobooth {
  background: white;
  height: 80vh;
  margin: 2rem auto;
  border-radius: 2px;
}

.photo {
  width: 100%;
  height: 80%;
  object-fit: contain;
}

.player {
  position: absolute;
  top: 25px;
  right: 20px;
  width: 200px;
}

/* Strip! */

.strip {
  padding: 2rem;
}

.strip img {
  width: 100px;
  overflow-x: scroll;
  padding: 0.8rem 0.8rem 2.5rem 0.8rem;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  background: white;
}

.strip a:nth-child(5n + 1) img {
  transform: rotate(10deg);
}
.strip a:nth-child(5n + 2) img {
  transform: rotate(-2deg);
}
.strip a:nth-child(5n + 3) img {
  transform: rotate(8deg);
}
.strip a:nth-child(5n + 4) img {
  transform: rotate(-11deg);
}
.strip a:nth-child(5n + 5) img {
  transform: rotate(12deg);
}
