*{box-sizing: border-box;}


/**************styles for directors' pages**********************/
/*lists for images*/
ul.movies {
    list-style-type: none;

    /*display: inline-block;*/
    margin:0px;
    padding:0px;
}

ul.movies li{
    display:inline-block;
}
/*Ending of lists for movies*/

/*Movie posters scaling*/
img.movies{
    height:auto;
    width:100px;
    margin:0px 60px;
}

/*Portraits of directors*/
img.portrait {
    width:680px;
    height:478px;
}

/*edgar's movie's poster*/
img.cornette{
    width:680px;
    height:auto;

    /*centering*/
    margin-left: auto;
    margin-right: auto;
}
/*Ending of scaling director's pages*/

/*scaling of small images in products.html*/
img.small_img {
    height:auto;
    width:100px;
}

img.small_img:hover {   /*when poiting at it*/
    width:105px;
}
