/*** The All So Important RESET! ***/
html, body, div, span, h1, h2, h3, h4, h5, h6, p, ol, ul, li, aside, footer,header, hgroup, menu, nav, section, summary {
   margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
aside, footer, header, hgroup, menu, nav, section {display: block}

/************************ Basics ************************/
html {
	width: 100%;
	height: 100%;
	background-color: #DFD4BE;
}

body {
		height: 100%;
		overflow:hidden; 
		padding: 10px 20px 0px 20px;
		background-color: #626057;
}
#wrapper {
display: grid;
grid-template-columns: 10% 81% 8%;
grid-template-rows: 100% ;
grid-gap: 5px;
border: 10px solid #626057;
height: 90%;
margin: 0px auto;
padding: 5px 5px 5px 5px;
overflow: hidden;
}
header {
	padding: 5px;
  text-align: center;
}	
footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #626057;
  color: white;
  text-align: center;
}
/************************ font ************************/
h1 {
	font-size: 2em;
	line-height: 0.9;
	color: #FFFFFF;
	text-align: left;
	margin-bottom: 2px;
	font-weight: bold;
	padding-bottom: 2px;
	text-shadow: 1px 2px #FF7979;
}
h2 { 
    display: block;
    font-size: 1.5em;
    margin-top: 0em;
    margin-bottom: 0.2em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
    text-align:center;
		text-shadow: 2px 2px #000000;
}
h4 { 
    display: block;
    font-size: 1em;
	color: #FFFFFF;
    margin-top: 0em;
    margin-bottom: 0.2em;
    margin-left: 0;
    margin-right: 0;
    font-weight: normal;
    text-align:center;
		text-shadow: 1px 1px #000000;
}
h6 { 
    display: block;
    font-size: 0.7em;
	color: #FFFFFF;
    margin-top: 0em;
    margin-bottom: 0.2em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
    text-align:center;
		text-shadow: 1px 1px #FF7979;
}
/************************ list ************************/
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
      font-size: 14px; font-weight: bold;
}
#nav{
	width: 100%;
	height: 100%;	
	} 
nav ul {
	list-style: none;
	display: inline-block;
	padding-left: 0px;
	height: 20px;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 2px;
    }
nav ul li {
    display: inline-block; padding: 0px 3px 0px 3px;
    height: 20px; 
    }
nav ul li a {
    color: #ffffff; text-decoration: none;
    font-size: 20px; font-weight: bold;
	}
a:link {
color: #000000;
  text-decoration: none;
}
a:visited {
  color: #000000;
}
a:hover {
  color: #FF7979;
}
/************************ iframe ************************/
iframe {width: 95%;height: 95%;
background-image: url(../images/lorna_album5b.jpg);
 	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center center;
		}
		
/************************ grid ************************/		
.box {
  color: #fff;
  border-radius: 5px;
  padding: 20px;
  font-size: 150%;
  }

.b {
		grid-area: 1 / 3 / 5 / 4;
		  color: #fff;
		  background-color: #A59D91;
        border-radius: 5px;
        padding: 5px;
		border-style: solid;
        border-width: 5px;
		border-color: #A59D91;
		overflow: auto;
        }
		
.c {
		grid-area: 1 / 1 / 5 / 2;
		  color: black;
        border-radius: 5px;
        padding: 5px;
		border-style: solid;
        border-width: 5px;
		border-color: #A59D91;
		background-color: #A59D91;
		overflow: auto;
        }
    .d {
		grid-area: 1 / 2 / 5 / 3;
		  color: black;
        border-radius: 5px;
        padding: 5px;
		border-style: solid;
        border-width: 5px;
		border-color: black;
		background-color: #626057;
		        display: flex;
        align-items: center;
        justify-content: center;
		overflow: auto;
    }
