.logo{ 
	font-family: 'Adobe Caslon Pro', serif;
    font-weight: bold;
	color: #0000e5;
    text-align: left;
}

.header{
	background-color: #C0C0C0;
	text-align: left;
	padding: 20px;
}

.topNav{
	background-color: #333;
	overflow: hidden;
	border-bottom: 5px solid #0000e5;
}

/*style of the links inside the nav bar*/
.topNav a{
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}

/*change color of links on hover*/
.topNav a:hover{
	transition: all 0.3s ease;
	background-color: #dddd;
	color: black;
}

/*Add a color to the active /current link*/
.topNav a.active{
	background-color: #0000e5;
	color: white;
}

.topNav input[type=text]{
	float: right;
	padding: 6px;
	border:none;
	margin-top: 8px;
	margin-right: 16px;
	font-size: 17px;
}

.topNav .search-container button{
	float: right;
	padding: 6px;
	margin-top: 8px;
	margin-right: 16px;
	background:#ddd;
	font-size: 17px;
	border:none;
}
.topNav .search-container button:hover{
	transition: all 0.3s ease;
	background: #ccc;
	
}

.cover{
	position: relative;
	width: 1000;
	height: 500;
	border-bottom: 5px solid #0000e5;
}
.cover img{
	opacity: 0.5;
	filter: blur(2px);
	padding: 10px;
	display: block;
	width: 1000;
	height: 500;
	max-width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto; /* a margain creates extra space around an element*/
}



.cover h2{
	text-align: center;
	word-wrap: break-word;
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translate(-50%, -50%);
	color:  #f0f3f4 ;
	font-size: 75px;
	text-shadow: 5px 5px 10px #196f3d;

}

.cover h5{
	text-align: center;
	word-wrap: break-word;
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	color:  #0000e5;
	font-size: 30px;
}

.grid-container{
	display: grid;
	grid-template: 550px / auto auto auto;
	grid-gap: 5px;
	background-color:  #0000e5;
	padding: 5px;
}

.grid-container img{
	padding: 10px; /* if set as p p p p ..thats top bottom right left*/
	display: block; /* if p p thats top and bottom*/
	border-radius: 50px;
	width: 300;
	height: 300;
	max-width: 40%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

.grid-container > div {
	background-color: #ffffff;
	text-align: center;
	font-size: 25px;
	overflow: auto; /* this should be removed of you change the grid to a column*/
}

.grid-container p{
	padding: 5px;
	text-align: center;
	font-size: 18px;
}

/*footer*/
footer{
	padding: 20px;
	text-align: center;
	font-size: larger;
    font-weight: bold;
    color: #ddd;
	background-color: #333;
}



