body {
    font-family: Arial;
    background-color: #eee;
    margin-left: 15px;
}

h1, h2, h3, h4, h5, p, ul {
    margin: 0;
    line-height: 1.35;
}

h1 {
    text-transform: uppercase;
    font-size: 36px;
}

h2 {
    font-size: 26px;
}

a {
    text-decoration: none;
}

.sidebar {
    grid-area: sidebar;
}

.main-content {
    grid-area: content;
    padding-right: 50px;
}

.header {
    grid-area: header;
}

.full-body {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    grid-gap: 15px;
    grid-template-areas:
                "header header header"
                "content content sidebar";
    page-break-inside: avoid;
}

.contact-info, .contact-links {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 95%;
    margin: 0;
    padding: 0;
}

.contact-info {
    margin-top: 10px;
}

.contact-info li, .contact-links li {
    list-style-type: none;
    display: block;
    flex: 0 1 auto;
    width: 30%;
}

.section-heading {
    border-bottom: black 3px solid;
    text-transform: uppercase;
    margin: 20px 0 10px 0;
}

.company-info {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 80%;
    margin: 0;
    padding: 0;
}

.company-info li {
    list-style-type: none;
    display: block;
    flex: 0 1 auto;
    width: 55%;
}

.work-experience div:nth-child(n+3) {
    margin-top: 20px;
}

.highlight {
    color: royalblue;
    font-weight: bold;
}

.title {
    font-size: 24px;
}

.company-info {
    font-size: 15px;
}