*{
margin: 0;
padding: 0;
}
body {
font-family: "Lato", sans-serif;
background-color: #f2f2f2;
}
.main{
margin-top: 20px;
margin-bottom:20px;
}
.main_contant{
margin-bottom: 30px;
}
.paragraph{
margin-top: 10px;
margin-bottom: 20px;
padding-left: 50px;
padding-right: 50px;
}
.paragraph p{
    padding:12px;
    font-size:15px;
}
.image{
border-radius: 20px;
height: 300px;
width: 90%;
display: flex;
justify-content: center;
align-items: center;

}
.image img {
flex-shrink: 0;
border-radius:10px;
width: auto;
height: 100%;
transition: transform 1.0s;
}
.image img:hover {
  transform: scale(2.0);
  transition: transform 1.0s;
  z-index:111;
}

.text{
height: auto;
width: 100%;
display: block;
overflow-y: scroll;
}
.text h2{
padding-top:5px;
font-size: 30px;
font-weight: bold;
text-align:center;
color: #c21500;
}
.text p{
font-size: 20px;
text-align:center;
}

