
body{
    background-color: aquamarine;
}


/* Style the container here.  Make the container 200 px wide and float it to the left and have the images float to the left stacked on top of each other. Have a background color that extends all the way down. Center the images in the container*/


#container{
    background-color: blue;
    border:thick solid red;
 
    width:200px;
    padding: 20px 0 20px 20px;
    float: left;
}






/* Style containerTwo here.  Make the container 350 px wide.  Float to the right.  Float the images to the right with the background extending all the way down.*/

#containerTwo{
    background-color:chocolate;
     border:thick solid green;
    width:359px;
    padding:10px 0 10px 10px;
    float:right;
}
