body {
    margin: 40px;
    font-family: Tahoma, "Courier New", sans-serif;
    font-size: smaller;
}

.lsidebar {
    grid-area: lsidebar;
}

.rsidebar {
    grid-area: rsidebar;
}

.content {
    grid-area: content;
}

.header {
    grid-area: header;
    text-align: center;
}

.footer {
    grid-area: footer;
}

.wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 320px auto 120px;
    grid-template-areas:
        "header header  header"
        "lsidebar content rsidebar"
        "footer footer footer";
    color: #444;
}
.box {
    color: #fff;
    border-radius: 5px;
    padding: 20px;
    font-size: 150%;
}

.sectionLink {
    font-size: smaller;
}

.jobTitle {
    font-weight: bold;
}
