.title {
    text-align: center;
    margin-top: 50px;
}

.movie-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
    width: 100%; /* Allow it to take full width */
    margin-left: auto; /* Center the container */
    margin-right: auto; /* Center the container */
    justify-content: center;
    margin-top: 70px;
    column-gap: 100px;
    row-gap: 50px;
    cursor: pointer;

}



.movie {
    position: relative;
    width: 200px;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.movie:nth-child(3n) {
    margin-right: 0; /* No margin for the last item in the row */
}
.movie img {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    object-fit: cover;
    cursor: pointer;

}
.movie:hover img {
    filter: blur(1px) brightness(50%);
}
.movie-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5em;
    text-align: center;
    opacity: 0;
    font-weight: 700;
    transition: opacity 0.3s ease;
    cursor: pointer;
}
.movie:hover .movie-title {
    opacity: 1;
}
