body {
    font-family: 'Times New Roman', serif;
    margin: 0 auto;
    overflow: auto;
    padding: 25px 50px;
    text-align: left;
    width: 850px;
}

/* Font, margins */

.heading {
    overflow: hidden;
    display: flex;
}

.heading div:first-child {
    flex-grow: 1;
    align-self: center;
}

.heading blockquote {
    align-self: center;
    margin: 0;
    text-align: left;
}

.heading em {
    font-size: .95em;
    font-weight: normal;
    align-self: baseline;
}

.technical-skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 1em;
    text-align: justify;
    margin-top: 15px;
}

.divider {
    break-after: avoid-page;
    position: relative;
}

.divider:after {
    background: #CCC;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    top: 74%;
    width: 100%;
    z-index: 0;
}

.block {
    break-inside: avoid-page;
}

.fa {
    margin-right: 3px;
}

h1 {
    font-size: 3.0em;
    font-weight: normal;
    margin: 0;
}

h2 {
    background: #FFF;
    color: #4D4D4D;
    display: inline-block;
    font-size: 1em;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    margin-top: 35px;
    padding-right: 10px;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}

h3 {
    font-size: 1.32em;
    font-weight: normal;
    margin-bottom: 0;
    margin-top: 15px;
    flex-grow: 1;
    align-self: baseline;
}

h4 {
    font-size: 1.15em;
    font-weight: normal;
    margin: 0;
}

ul {
    color: #595959;
    font-size: 1.0em;
    margin: 5px 0;
    padding-left: 0;
    list-style-type: none;
}

li {
    margin: 1px;
}

p {
    color: #595959;
    font-size: 1.0em;
    margin: 5px 0;
}

a,
a:visited {
    color: #595959;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #595959;
    text-decoration: underline;
}

code {
    white-space: pre-wrap;
}

span.smallcaps {
    font-variant: small-caps;
}

span.underline {
    text-decoration: underline;
}