.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 20px;
  margin: 0 auto;
  max-width: 1200px;
}

.movie {
  perspective: 1000px;
}

.movie-content {
  position: relative;
  width: 100%;
  padding-bottom: 150%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.movie:hover .movie-content {
  transform: rotateY(180deg);
}

.movie-front,
.movie-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.movie-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.movie-back {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  transform: rotateY(180deg);
  border-radius: 10px;
  padding: 10px;
}
.movie-back p {
  font-size: 15px;
  margin: 0;
}

.movie-back h3 {
  font-size: 20px;
  /* margin: 0; */
  text-overflow: ellipsis;
  width: 90%;
}

.pagination {
  margin: 20px 0;
  text-align: center;
}

.pagination a {
  margin: 0 5px;
  color: #fff;
  padding: 8px 16px;
  background-color: #444;
  text-decoration: none;
  border-radius: 5px;
}

.pagination a.active {
  background-color: #e41919;
}

.pagination a:hover {
  background-color: #e41919;
}

@media screen and (max-width: 750px) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
  }

  .movie {
    perspective: 1000px;
  }

  .movie-content {
    position: relative;
    width: 100%;
    padding-bottom: 150%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
  }

  .movie:hover .movie-content {
    transform: rotateY(180deg);
  }

  .movie-front,
  .movie-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
  }

  .movie-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .movie-back {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    transform: rotateY(180deg);
    border-radius: 10px;
    padding: 10px;
  }
  .movie-back p {
    font-size: 13px;
    margin: 0;
  }

  .movie-back h3 {
    font-size: 18px;
    /* margin: 0; */
    text-overflow: ellipsis;
    width: 100%;
  }

  .pagination {
    margin: 20px 0;
    text-align: center;
  }

  .pagination a {
    margin: 0 5px;
    color: #fff;
    padding: 8px 16px;
    background-color: #444;
    text-decoration: none;
    border-radius: 5px;
  }

  .pagination a.active {
    background-color: #e41919;
  }

  .pagination a:hover {
    background-color: #e41919;
  }
}
