#whatever {
    text-align:center;
    padding-top:20px;
    padding-bottom:10px;
}

.service-container {
    display:flex;
    margin:auto;
}

.service {
    width:45%;
    margin:20px auto;
}
.service h1 {
    text-align: center;
    color: #823EB9;
    font-size: 28px;
    font-weight: normal;
    line-height:34px;
}
.service p {
    text-align: justify;
    margin: 10px auto;
}
.service img {
    width:80%;
    margin:10px 10%;
    border:1px solid black;
    border-radius: 10px;
}

@media screen and (max-width:650px) {
    .service-container {
        display:block;
    }
    .service {
        width:90%;
    }
}