@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300&display=swap');
* {
    box-sizing: border-box;
    color: grey;
}
body {
    background-color: #EBEBEB;
    font-family: 'Open Sans', sans-serif;
}
p {
    font-size: 15px;
}
.grid {
    display: grid;
    grid-auto-columns: minmax(auto,500px);
    grid-template-rows: repeat(2,auto);
    justify-content: center;
    grid-row-gap: 30px;
}
.cell-1{
    grid-row: 1/2;
    grid-column: 1/2;
    text-align: center;
    background-color: white;
    padding-top: 15px;
    padding-bottom: 15px ;
    box-shadow: 0 2px 2px #cbcaca ;
    border-radius: 5px;
}
.cell-1 img {
    border-radius: 50%;
    border: 4px solid #d0cece;
    width: 120px;
    height: 120px;
}
.cell-1 p {
    text-align: justify;
    padding-left: 20px;
    padding-right: 20px;
}
a {
    align-self: center;
}
button {
    border: none;
    background-color: #DD5555;
    color: white;
    border-radius: 5px 5px 5px 5px;
    padding: 10px;
    font-weight: bold;
}
button:hover {
    background-color: white;
    border: 2px solid #DD5555;
    color: #DD5555;
}
h2 {
    color: #DD5555;
    font-weight: 900;
}
.cell-2 {
    grid-row: 2/3;
    grid-column: 1/2;
    background-color: white;
    font-size: 25px;
    display: flex;
    justify-content: center;
    padding-top: 55px;
    padding-bottom: 55px;
    box-shadow: 0 2px 2px #cbcaca ;
    border-radius: 5px;
}
.cell-2 ul li {
    display: inline-flex;
    justify-content: center;
}
.cell-2 a {
    text-decoration: none;
    text-align: center;
}
i, .cell-2 p{
    color: #bdbbbb;
    padding-right: 20px;
}
.cell-3{
    background-color: white;
    box-shadow: 0 2px 2px #cbcaca ;
    border-radius: 5px;
}
.cell-3 h3 {
    text-align: center;
    font-weight: bold;
}
.cel-31 {
    display: inline-flex;
}
h4 {
    text-align: center;
    font-weight: bolder;
}
.cel-31 p {
    text-align: justify;
    padding-right: 30px;
}
.cel-31 img {
    width: 120px;
    height: auto;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 30%;
}
.cel-32 {
    display: inline-flex;
}
.cel-32 img {
    width: 120px;
    height: auto;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 30%;
}
.cel-32 p {
    text-align: justify;
    padding-right: 30px;
}
.cel-33 {
    display: inline-flex;
}
.cel-33 img {
    width: 120px;
    height: auto;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 30%;
}
.cel-33 p {
    text-align: justify;
    padding-right: 30px;
}
@media only screen and (max-width: 304px) {
    .cell-2 ul li {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 350px) {
    .cel-31 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 20px;
        align-items: center;
    }
    .cel-32 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 20px;
        align-items: center;
    }
    .cel-33 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 20px;
        align-items: center;
    }
}