body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'sourcesans','Source Sans Pro','Open Sans','Arial',sans-serif;
    font-size: .8rem;
}
* {
    box-sizing: border-box;
}
h1 {
    font-style: italic;
    font-family: Georgia,Palatino,Times New Roman,Times,Serif;
    color: #444;
    margin-bottom: 0;
    margin-top: 30px;
}
p {
    font-size: .8rem;
}
.wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

.center {
    width: 80%;
    height: 100%;
    max-width: 1100px;
}

.row {
    width: 100%,
    height: auto;
    display: flex;
    flex-wrap: nowrap;
}
.row > div {
    width: 50%;
    height: auto;
    padding: 15px;
}
.row > div h2 {
    width: 100%;
    background: #0066FF;
    color: white;
    font-size: .9rem;
    padding: 5px 5px;
    margin: 0;
    font-weight: 600;
    border-radius: 5px;
}

.pricing > p {
    display: flex;
    justify-content: space-between;
}

.contact {
    padding: 15px;
}

.contact h2 {
    width: 100%;
    background: #0066FF;
    color: white;
    font-size: .9rem;
    padding: 5px 5px;
    margin: 0;
    font-weight: 600;
    border-radius: 5px;
}

.contact h3 {
    font-size: .9rem;
    margin-bottom: 0;
}

@media screen and (max-width: 1150px) {
    .center {
        width: 90%;
    }
}

@media screen and (max-width: 700px) {
    .center {
        width: calc(100% - 20px);
    }
    .row {
        flex-wrap: wrap;
    }
    .row > div {
        width: 100%;
    }
}
