body {
    margin: auto;
    padding: 50px;
    color: #e194c5;
    font-family: 'Lato', sans-serif;
    background-image: url(../images/03_desaturated_lightest.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: 20px;
    float: left;
    margin-bottom: 0;
}

.top-title {
    grid-area: top-title;
    padding: 0px;
    margin-bottom: 0;
}

.header {
    grid-area: header;
    display: grid;
    width: 100%;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 0;
}

.main {
    grid-area: main;
    background-color: #e6b0da;  /* very pale grey */
    border: solid 1px #b37ed4;
}


.footer {
    grid-area: footer;
    text-align: right;
}

/* ---- End of grid setup ---- */


/* -000- Area styling -000- */

.box {
    padding: 20px;
    /* border-radius: 10px; */
    background-color: #c16161;
}


/* -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 the content on first page will fill vertical space */
.info-text {
    display: flex;
    flex-direction: column;
}

/* style bullets in main part of page (seprate to navagation) */
ul.text {
    list-style: disc;
    display: list-item;
    border: none;
    margin-left: 20px;
    /* background clour white; */
}

.single-spacing {
    padding: 0;
}

/* Navigation Links */
.nav a {font-weight: bold;}
.nav a:link, a.nav:visited {color: #803a3a;} /*dark red */
.nav a:hover {color: #604830; text-decoration: none;} /* chocolate brown */

/* navigtion links */
a.nav {font-weight: bold;}
a.nav:link, a.nav:visted {color:#AA0000} 
a.nav:hover {color:#604830}


/* links in page */
a {font-weight: bold;}
a:link{color: #AA0000;} /*dark_red */
a:visited{color: #111177;} /* dark blue */
a:hover{color: #3b65c0;}    /* Black*/

@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;


        }

}















