* {
    box-sizing: border-box;
}
h2 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: bold;
    text-align: left;
    border-bottom-style: solid;
    border-top-style: solid;
    border-top-width: 5px;
}
h3 {
    margin-bottom: -10px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
}
.nml {
    font-family: 'Times New Roman', Times, serif;
}
.bld {
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
}
.emph {
    font-weight: bold;
    text-decoration: underline;
}
.quote {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1em;
    font-style: italic;
    text-align: left;
}

.center-me {
    margin: 0 auto;
    width: 1000px;
}
.title {
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 3em;
margin-bottom: -15px;
text-align: center;
color: black;
}
.subtitle {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    color: darkgray;
    font-size: 1.5em;
}
.item1 { 
    grid-area: header; 
}
.item2 {
    grid-area: left;
}
.item3 {
    grid-area: main;
    text-align: left;
}
.item4 {
    grid-area: right;
    text-align: left;
}
.item5 {
    grid-area: footer;
    text-align: left;
    border-top-style: solid;
}
.item6 {
    grid-area: top;
    text-align: left;
}
.grid-container {
    display: grid;
    grid-template-areas:
    'header header header header header'
    'top top top top right'
    'left main main main right'
    'footer footer footer footer footer';
    grid-gap: 30px;
    padding: 10px;
    background-color: white;
    
    text-align: center;
}
.grid-container > div {
    padding: 0px 0;
}
.space {
    margin-bottom: 100px;
}
img.bottom {
    padding-top: 250px;
    margin: auto;
    width: 100%;
}
.rgt {
    text-align: right;
}
.ele {
    margin-top: -80px;
    text-align: right;
    font-size: 3em;
    font-weight: bold;
    color: burlywood;
    margin-right: 20px;
}