.filmImage {
    padding: 10px;
    max-width: 235px;
    width: 100%;
    height: 200px;
    transition: all 0.3s ease-in-out;
}

.filmImage:hover{
    cursor: pointer;
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding-top: 70px;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  #close {
    position: absolute;
    top: 80px;
    right: 30px;
    color: white;
    font-size: 26px;
    cursor: pointer;
    padding: 5px;
    z-index: 10000;
  }

  #next, #prev{
    position: absolute;
    top: 50%;
    padding: 5px;
    z-index: 10000;
    cursor: pointer;

    img {
      width: 40px;
      height: 40px;
    }

  }

  #prev {
    left: 30px;
  }

  #next {
    right: 20px;
  }
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}