body {
    background-color: #f8f9fa;
    background-image: url('background.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.movie-card {
    transition: transform 0.2s;
    animation: fadeIn 1s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.movie-card:hover {
    transform: scale(1.05);
}

.movie-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.movie-card img {
    width: 100%;
    height: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}