body {
    margin: auto;
    padding: 50px;
    color: #000;
	font-family: 'Lora', serif;
    /* font-family: 'Lato', sans-serif; */
	}

/* ---- Set up site grid ---- */
.wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: 
        "banner"
        "nav"
        "main"
        "footer";
        grid-gap: 4px;
    }

/* ---- End of grid setup ---- */

/* ---- Area styling ---- */

.box {
    padding: 50px;
    /* border-radius: 10px; */
	}

/* Area colouring... */

/* logo, banner and footer background are the same */
.logo, .banner, .footer {
    background-color: #c6b08e;  /* dark grey */
	}

/* Set font on dark areas to white */
.logo, .banner, .side, .footer {
    color: #8a6d43;
	}

/* Area specifics */

.logo {
    padding: 20;
    float: left;
	}

.banner {
    grid-area: banner;
	}

.nav {
    grid-area: nav;
    background-color: #8a6d43;  /* silver */
    font-size: 200%;
    text-align: center;
	}

.main {
	padding: 10px;
    grid-area: main;
    background-color: #f0d6ae;  /* very pale grey */
    border: solid 1px #CCC;
	}

.footer {
    grid-area: footer;
    text-align: right;
	}

/* ---- End of Area styling ---- */

h1, h2, h3, h4 {
    font-family: 'Lora', serif;
	}

/* Navigation Links */
.nav a {font-weight: bold;}
.nav a:link, .nav a:visited {color: #ffffff;} /*dark red */
.nav a:hover {color: #604830; text-decoration: none;} /* chocolate brown */


/* links in page */
a {font-weight: bold;}
a:link{color: #ffffff;} /*dark_red */
a:visited{color: #111177;} /* dark blue */
a:hover{color: #000;}    /* Black*/
a:link {
  text-decoration: none;
}

/* Contact Form Styling */
.contact {
    width: 100%;
	}

.img-circle {
    border-radius: 50%;
    max-width: 85%;
    height: auto;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.8);     
	}

.center_image {
    text-align: center;
	}

/* Sub Heading Formatting */
.sub_heading {
    font-family: 'Ubuntu', sans-serif;
    color: #593849; /* purple */
    font-weight: bold;
	}
	<style>
a:link {
  color: green;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: black;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: yellow;
  background-color: transparent;
  
}

a:active {
  color: yellow;
  background-color: transparent;
}
</style>

.main, iframe {
	margin:auto;
	width:100%;
	border:0;
}




















