html{
	background-image: url("../images/background.jpeg");
	font-display: verdana, Geneva, sans-serif;
	height: 100%;

}

body{
	background-color: white;
	border-left: 3px solid rgb(51, 51, 51);
    border-right: 3px solid rgb(51, 51, 51);
    margin: 0px auto;
    min-width: 800px;
    max-width: 1200px;  
    width: 100%;

}

/* My Header */

header img#logo1{
	width: 100%;
}

header{
	background: rgb(128,0,0);
    border-bottom: 1px solid rgb(0, 0, 0);
    color: white;
}

/* Nav Bar */

header nav ul{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: 100%;
	margin: auto;
	padding: 20px;
	padding-left: 150px;

}

header nav ul li a{
	color: white;
}

header nav ul li a:hover {
	color: skyblue;
}

section{
	margin: 30px 3%;
}

section h1{
	font-family: Seoge, "Segoe UI", "DejaVu Sans", Verdana, sans-serif;
	font-size: 2.5em;
	color: rgb(179, 20, 25);
	margin-bottom: 35px;
}

/* Main body */

#intro{
	font-family: "Copperplate";
	background-color: rgb(237, 246, 254);
	width: 50%;
	float: left;
	font-size: 1.5em;
	margin: auto;
	padding: 50px 15px 95px 15px;
	
}

article img#mainpic{
	width: 45%;
	clear: both;

}

section h2{
	padding-top: 20px;
	clear: both;
	width: 100%;
	margin: auto;
	font-family: "Copperplate";
	text-align: center;
	font-size: 1.5em;
}

article img{
	width: 30%;
	margin: 0px 18px 0px 18px;
		
}

#description p{
	
	width: 33.3%;
	float: left;
	text-align: center;
	padding-bottom: 20px;
	font-family: "Copperplate";
	font-size: 1.5em;
}

.quotes{
	width: 100%;
	clear: both;
	border: 2px solid #ccc;
	background-color: #eee;
	border-radius: 5px;
	padding: 16px;
	margin: 16px 0;

}

.quotes::after{
	content: "";
	clear: both;
	display: table;
}

.quotes img{
	float: left;
	margin-right: 20px;
	border-radius: 50%;
}

.quotes span{
	font-size: 20px;
	margin-right: 15px;

}

.quotes{
	text-align: center;
}

.quotes img{
	margin: auto;
	float: none;
	display: block;
}

/* The Footer */


footer{
	clear: both;
	color: white;
	background-color: rgb(128,0,0);
	padding: 20px 40px;
	display: grid;
	grid-template-columns: 20% 20% 30% 30%;
	grid-column-gap: 15px;
}

footer h1{
	color: green;
	font-size: 1em;
	margin: 10px 0px;

}

footer h1:first-of-type {
	margin-top: 0px;
}

footer a{
	display: block;
	color: white;
	text-decoration: none;
	font-size: 0.9em;
}

footer a:hover {
	text-decoration: underline;
}

footer address{
	font-style: normal;
}

























