/* alloftheabove.live --- Design  & Style --- Copyright 2020 --- All of the Above --- FunknJam Productions */

html {
  	background: url('images/background.png') no-repeat center center fixed;
	background-size: cover;
	width: 100%;
	height: 100%;
}

* {
  	box-sizing: border-box;
	border: 0;
	padding: 0;
	margin: 0;
}

body {
	font-family: "Arial", Arial, Verdana;
	border: 0;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
}

.grid-container {
 	display: grid;
	grid-gap: 5px;
	width: 100%;
	height: 100%;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-areas:
		'navbar navbar navbar'
		'logo logo logo'
		'info info info'
		'content content content'
		'footer footer footer';
 	justify-items: center;
}

.navbar { 
	grid-area: navbar;
	position: fixed;
	border: 0;
	padding: 0;
	width: 100%;
	overflow: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #002080;	
}

.navbar p {
	color: white;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
}

.navbar ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

li {
	float: left;
	margin: 0;
	padding: 0;
}

li a {
	display: block;
	color: white;
	font-weight: bold;
	text-align: center;
	padding: 5px 10px;
	text-decoration: none;
}

li a:hover {
	background-color: #002080;
}

.logo {
	grid-area: logo;  
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 10px;
}

.logo img {
	margin-top: 10px;
  	grid-column: 2 / 3;
	max-width: 66%;
	height: auto;
}

.info {
	grid-area: info;  
	display: flex;
	justify-content: center;
	align-items: center;
}

.info p {
	background-color: #002080;
	border: 5px;
	border-color: #ffffff;
	border-style: solid;
	border-radius: 25px;
	overflow: auto;
	padding: 10px;
	color: black;
	font-weight: bold;
	font-size: small;
	color: #ffffff;
	text-align: center;
}
	
.content {
	grid-area: content;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.content img {
	border: 5px;
	border-style: solid;
	border-radius: 15px;
  	grid-column: 2 / 3;
	max-width: 60%;
	height: auto;
	justify-content: center;
	align-items: center;
}

.content p {
	background-color: #002080;	
	border: 5px;
	border-color: ffffff;
	border-style: solid; 
	border-radius: 25px;
	padding: 10px;
	color: #ffffff;
	text-align: center;
}

.footer {
	grid-area: footer;
	display: flex;
	align-items: center;
	background: #002080;	
	width: 100%;
	justify-content: center;
}

.footer p {
	color: white;
	font-style: italic;
	font-size: xx-small;
}