.movie{
    width:200px;
    height: 300px;
    background: gray;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
}
.movie:hover{
    transform: scale(1.05);
    transition: transform 0.3s;
}
.movie_title{
    font-weight: bold;
    font-size: 16px;
    text-align: center; 
}
.movie:hover .play_button{
    display: block;
}