html {
  box-sizing: border-box;
  background: url(https://wallpaperaccess.com/full/478290.jpg);
  background-size: cover;
  background-attachment: fixed;
}

*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

.photobooth {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/*clearfix*/
.photobooth:after {
  content: '';
  display: block;
  clear: both;
}

.photo {
  height: 80vh;
  float: left;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.take-photo {
  appearance: none;
  border: none;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 3rem;
  height: 3rem;
  background: url(img/sharingan.png);
  background-size: cover;
}

.sharingan {
  appearance: none;
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  width: 50vh;
  height: 50vh;
  background: url(img/sharingan.png);
  background-size: cover;
  transition: transform 3s ease-in,
              width 3s cubic-bezier(0.5, -0.5, 0, 1),
              height 3s cubic-bezier(0.5, -0.5, 0, 1) ;
}

.sharingan.clicked {
  transform: translate(-50%, -50%) rotate(-1800deg);
  width: 300vh;
  height: 300vh;
}

.sharingan.hide {
  display: none;
}

.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); }
