body,.container{
    height:fit-content;
}
.main{
    background-image: url(../images/comics-img2.jpg);
    background-color: #717171;
    background-blend-mode: multiply;
}
.movies-container{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    transform: translateY(100vh);
    animation: slideUp 1.5s ease-in-out forwards;
}
.movie-card{
    display: flex;
    flex-direction: column;
    width: 30vw;
    justify-content: center;
    align-items: center;
    margin: 1% 1%;
}
.movie-card img{
    width: 60%;
    box-shadow: 2px 2px 10px 2px #212121;
    transition: transform 3s, box-shadow 2s;
}
.movie-card img:hover{
    transform: rotateY(360deg);
    box-shadow: 2px 2px 10px 2px #8f8f8f;
}
.movie-card h1{
    width: 60%;
    font-size:18px;
}
.movie-card h1:hover{
    color: #CE1212;
}
.movie-card p{
    width: 60%;
    font-size: 14px;
    margin: 1%;
}
@media screen and (max-width:600px) {
    .movies-container{
        flex-direction: column;
    }
    .movie-card{
        width:100%;
    }
}
