*{font-family:Arial;}
*{color:purple;}
*{box-sizing:border-box;}
body
{
    background-color: green;
}
div.left {
        position:static;
        top:130px;
        left:5px;
        height:250px;
        border:solid red 5px;
        width: 160px;
       }
div.right
{
    position:static;
    top:130px;
    right:5px;
    height:250px;
    border:solid red 5px;
    width: 160px;
}
div.footer
{
    position: fixed;
    left: 10px;
    bottom: 0px;
    width: 100%;
    height:5%;
    background-color: red;
    color: white;
    text-align: center;
    z-index:1;
}
 div.header 
{
    position:fixed;
    top:0px;
    left:10px;
    right:10px;
    border:solid yellow 5px;
    background-color:pink;
        z-index:1;
}     
div.myImg {
    border:solid black 8px;
    border-radius:10px;
    display:inline-block;
    padding:15px;
    margin: 6px 10px;
}
img.thumbnail {
    height:100px;
    width:auto;
    position: relative;
    left: 10px;
    margin:0px auto;
    border-radius: 10px;
}
img.thumbnail:hover {
    height:102px;
}
img.hires{
    height:600px;
    width:auto;
}
div.myImg p.desc {
    text-align:center;
    height:50px;

}
.clear{
    clear:both;
}

