h1{
    text-align: center;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida     Grande","Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    color: red;
    margin: 20px;
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
    border: 3px solid green;
    width: 80%;
    margin: auto;
}

main > div {
    margin: 6px;
    text-align: center;
    width: 45%;
}

.movie-title {
    text-transform: uppercase;
    text-decoration: underline;
}

.movie-release {
    color: blue;
    margin-bottom: 10px;
}

.movie-image {
    width: 80%;
    height: 500px;
    object-fit: cover;
}

@media screen and (max-width: 425px) {
    .movie-image {
        width: 90%;
        height: 150px;
        object-fit: cover;
    }
}