div#gh {
    width: 80%;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
}
div#gh > div:nth-of-type(n+2) {
    flex-basis: 30%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    padding: 10px;
    border-radius: 30px;
    background-color: #F5F5F5;
}
div#gh > div:nth-of-type(n+2) > img {
    width: 50%;
}
div#gh > div:nth-of-type(n+2) > span {
    flex-basis: 100%;
    font-size: 22px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 12px;
}
div#gh > div:nth-of-type(n+2) > p {
    flex-basis: 100%;
    text-align: justify;
    padding: 10px;
    background-color: white;
    border-radius: 30px;
}
@media screen and (max-width: 780px) {
    div#gh {
        width: 95%;
    }
    div#gh > div:nth-of-type(n+2) {
        flex-basis: 95%;
        margin-bottom: 15px;
    }
    div#gh > div:nth-of-type(4) {
        margin-bottom: 0;
    }
}
@media screen and (min-width: 781px) and (max-width: 1100px) {
    div#gh {
        width: 90%;
    }
}