body {
    margin: auto;
    color: #000;
    font-family: 'Lato', sans-serif;
    background-image:url(../images/background.jpg);
}


/* ---- Set up site grid ---- */

.wrapper {
    display: grid;
    grid-template-columns: 100px 1fr 2fr;
    grid-template-rows: auto;
    grid-template-areas: 
        "logo top-title header"
        "main main main"
        "footer footer footer";
        grid-gap: 0px;

    padding: 0;
    margin-bottom: 0;
    
}

.logo {
    grid-area: logo;
    padding: 0;
    padding-left: 30px;
    float: left;
    margin: 0;
}

.top-title{
    grid-area: top-title;
    padding: 0px;
    margin-bottom: 0;
    color: aliceblue;
}

.header {
    grid-area: header;
    display: grid;
    width: 100%;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 0;
}

.main {
    grid-area: main;

    /* make background semi-transparent */
    background-color: rgba(255, 255, 255, .5);
    border: solid 1px #CCC;
}


.footer {
    grid-area: footer;
    text-align: right;
}

/* ---- End of grid setup ---- */


/* -000- Area styling -000- */

.box {
    padding: 20px;
    /* border-radius: 10px; */
    /*background-color: #ddd;*/
}


/* -000- End of area styling -000- */

h1, h2, h3, h4 {
    font-family: 'Ubuntu', sans-serif;
}

/* Responsive image rules */
.responsive {
    width: 100%;
    height: auto;
}

/* Div to ensure that content on first page fill vertical space */
.info-text
{
    display: flex;
    flex-direction: column;
}

/* style bullets in main part of page (separate to navigation) */
ul.text {
    list-style: disc;
    display: list-item;
    border: none;
    margin-left: 20px;
    /* background-color: white; */
}

.single-spacing {
    padding: 0;
}


/* Navigation Links */
a {font-weight: bold;}
a:link {color: #e3e6e4;} /* white */
a:visited {color: #e3e6e4;} /* white */
a:hover {color: rgba(26, 48, 107); text-decoration: none;} /* dark blue */


/* links in page */
.main a {font-weight: bold;}
.main a:link{color: #2c2c2c;} /* Black */
.main a:visited{color: #2c2c2c;} /* Black */
.main a:hover{color: rgba(26, 48, 107);}    /* dark blue */


@media (max-width: 767px)
{
    
    .wrapper {
        display: grid;
        grid-template-columns: 100px 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "logo top-title"
            "header header"
            "main main"
            "footer footer";
        grid-gap: 0;
    }
}
