p.one { 
	font: 18px Arial, sans-serif;
	line-height: 1.5; 
	color: black; 
	text-align: center; }
p.two { 
	font: 18px Arial, sans-serif;
	line-height: 4; 
	color: black; 
	text-align: center; }
.cell {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto; 

    padding-top: 40px;
    margin: 10px;

    background-color: white;}
.row {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
max-width: auto;
    -webkit-box-orient: horizontal; 
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    flex-direction: row;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;  
    align-items: center;

	background-color: white;}
 img{
        max-width: 100%;
	 max-height: 100%;}