body{background-color:white;
text-align:center; width:80%;
margin:auto;
}
h2{font-size:35px;}
p{font-size:25px; text-align:left}

h1{font-size:70px; font-variant:small-caps; background-color:powderblue; color: black; border-left:10px solid black;}
@media screen and (max-width:750px) {
 h1{font-size:32px;} 
}

.first-flex{
 display:flex;
 background-color:yellow;
 justify-content:center;
 align-content:space-between;
 flex-wrap:wrap;
 height:150px; 
}

.first-flex>div{
 background-color:green;
 color:white;
 text-align:center;
 font-size:30px;
 margin:10px;
 box-sizing:border-box;
 width:48%;
 line-height:25px;
}

@media screen and (max-width:750px){
 .first-flex{flex-direction:column; width:100%;}
 
}

.second-flex{
 display:flex;
 background-color:#f1f1f1;
 justify-content:center;
 height:75px;
}

.second-flex>div{
 color:black;
 font-size:25px;
}

img{width:100%; height:450px; margin:10px 0 10px 0; display:block; border:2px solid black; position:relative;}