.home-content {
    grid-area: main;
    display: grid;
    grid-template-columns: 1fr minmax(100px, 1180px) 1fr;
    grid-template-areas: "a b c";
}

.home-content-container {
    grid-area: b;
}

.mid-banner {
    color: white;
    background-color: #b02747;
    margin-top: 20px;
}

/*.mid-banner h2, p{*/
/*    text-align: center;*/
/*}*/

.mid-banner p {
    font-size: 1.2em;
}

.home-page-info {
    background-color: lightgray;
}

.things-to-do-container {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(287px, 1fr));
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.thing-to-do {}
.thing-to-do > h3 {
    color: #b02747;
    text-transform: uppercase;
    margin: 0px 0px 8px 0px;
}

.thing-to-do> span {
    font-weight: bold;
    font-size: 1.4em;
}

.things-to-do-element-div-link {
    text-decoration: none;
    color: inherit;
    padding: 20px;
}

.things-to-do-element-div-link:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


.tee-tip-container {
    display: flex;
    flex-wrap: wrap;
}

.tee-tip {
    flex-basis:200px;
    flex-grow: 1;
    padding: 20px;
}