
.reel-wrapper {
  position: relative;
  height: 500px;
  width: 100%;
  margin: 60px -19px 20px -19px;

}

.reel-container {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  height: 100%;
  transform: rotate(4deg);
  transform-origin: center;
  z-index: 2;
}

.reel-container::-webkit-scrollbar {
  display: none;
}

.h2 {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    height: 100%;
    transform: rotate(-4deg);
    transform-origin: center;
    z-index: 2;
  }
  
  .h2::-webkit-scrollbar {
    display: none;
  }

.reel-image {
  min-width: 250px;
  height: 250px;
  background-size: cover;
  background-position: center;
  border: 8px solid #222;

  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
  background-color: blanchedalmond;
  
}

.reel-image:hover {
  transform: scale(1.05);
}

.film-holes {
  position: absolute;
  left: 0;
  right: 0;
  height: 20px;
  background: repeating-linear-gradient(
    to right,
    transparent 0 10px,
    #000 10px 20px
  );
  z-index: 1;
}

.film-holes.top {
  top: 0;
}

.film-holes.bottom {
  bottom: 0;
}

.reel-caption {
    text-align: center;
    font-size: 40px;
    margin-top: -117px;
    font-weight: bold;
    letter-spacing: 1px;
}


/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .reel-wrapper {
    height: 400px;
    margin: 40px -10px 20px -10px;
  }

  .reel-image {
    min-width: 200px;
    height: 200px;
    border: 6px solid #222;
  }

  .reel-caption {
    font-size: 32px;
    margin-top: -100px;
  }
}

/* Mobile Devices (max-width: 600px) */
@media (max-width: 600px) {
  .reel-wrapper {
    height: 300px;
    margin: 30px -5px 15px -5px;
  }

  .reel-image {
    min-width: 160px;
    height: 160px;
    border: 4px solid #222;
  }

  .reel-caption {
    font-size: 24px;
    margin-top: -80px;
  }
}
