/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    p {
        font-size: 16px;
        text-align: center;
        margin: 5px 20px;
    }
    
    
    li {
        border: 0px solid #F00;
        float: left;
        font-weight: bold;
        padding: 30px 50px;
    }

    /* Introduction */
    #introduction {
        margin: 25px;
    }
    #introduction img {
        max-width: 90%;
    }
    #introduction p {
        font-size: 100%;
    }

    .movie {
        float: none;
    }

    .director{
        border: 0px solid #fff;
    }
    .director img {
        max-width: 90%;
    }
    .director p {
        font-size: 100%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .director img {
        max-width: 90%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
    .movie {
        border: 0;
        height: 350px;
        width: 200px;
        margin: 20px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}