* {
    box-sizing: border-box;
}
html {
	height: 100%;
}
body {
	font-family:Verdana, Geneva, sans-serif;
	font-size:95%;
	background-color: #000;
	color:#96D2D5;
	overflow-y: auto;
	overflow-x: hidden;
	min-height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-size:cover;
	background-image: url("../images/wc2018_bg.jpg");
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
}
H3 {
	border-bottom:1px solid #477b7e; 
	margin:1em 0px 2px 0px;
	font-family:Verdana, Geneva, sans-serif;
	color:#FFF;
	font-size:.8em;
}
#mainWrapper {
	width:100%;
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
}

#innerWrap {
	background-image: url('../images/section_bg.png');
	width: 90%;
	flex: 1 0 auto;
	max-width: 1200px;
	padding: 10%;
	font-weight:500;
	margin: 0 auto;
}

#footerWrap {
	position: relative;
	width:100%;
	flex-shrink: 0;
	margin-top: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#footerImage {
	max-width: 1200px;
	width: 90%;
	height: auto;
	display: block;
}

.paragraphTitleNoul {
	font-family:Verdana, Geneva, sans-serif;
	color:#FFF;
}

/* The grid container */
.grid-container {
	display: grid;
	text-align:left;
	row-gap: 1%;
	grid-template-areas: 
		'header header header' 
		'leftside middle rightside' 
		'footer footer footer' 
		/* In a rush should have gone col and rows but found this faster for the moment */
} 

.left,.leftb,.leftt,.middle,
.rightt, .right, .rightb {
	padding: 4%;
}
.header {
	grid-area: header;
	text-align: left;
}

.left {
	padding-left:4%;
}
.leftt {
	position:relative;
	left:5%;
}
.leftb {
	position:relative;
	left:5%;
	width:102%;
}
.main {
	grid-area:middle;
}
.right {
	padding:5px;
	margin-right:4%;
	vertical-align:top;
}
.rightt {
	padding:2%;
	position:relative;
	left:-5%;
	vertical-align:bottom;
}
.rightb {
	position:relative;
	left:-5%;
}
#footer {

	border-top:2px solid #FFFFFF;
	border-bottom:2px solid #FFFFFF;
	background-color:#ff3e1e;
	position:relative;
	height:20px; 
	width: 100%;
}
#footerWrap {
	grid-area: footer;
}
.readMore {
	background-color: #ff0000;
	border: none;
	float:right;
	color: #ffffff;
	padding: 5px 5px; 
	vertical-align:super;
	text-align: center;
	text-decoration: none;
	margin: 5px 5px;
	cursor: pointer;
	border-radius: 5px;
}

#logoCenter {
	background-repeat: no-repeat;
	background-size: contain;
	background-position:center;
	background-image: url("../images/3dRing.png");
}
#logoTop { display: none; }

#nav {
	width:100%; 
}
.active {
	background-repeat: no-repeat;
	background-size: fixed;
	background-position: right;
	background-image: url("../images/menu_selectmark.png");
}

.favQuote {
	font-style:italic;
	font-size:small;   
	color:#F00;
	padding:2%;
}
@media all and (min-width: 1200px) { 
	body{
		font-size: 90%;
	}
}
@media screen and (max-width: 1199px) {
	body{
		font-size: 80%;
	}
}
@media screen and (max-width: 800px) {
	body{
		font-size: 70%;
	}
  #logoCenter {
    display: none;
  }  
  #logoTop {
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position:center;
    background-image: url("../images/3dRing.png");
  }
}


@media screen and (max-width: 600px) {
	body{
		font-size: 70%;
	}
	.grid-container  {
		grid-template-areas: 
		'header header' 
		'left middle' 
		'right middle'
		'footer footer' 
	}
}

    