/* alloftheabove.live --- Design  & Style --- Copyright 2020 --- All of the Above --- FunknJam Productions */

html {
  	background: url('images/background.jpg') no-repeat center center fixed;
	background-size: cover;
}

* {
  	box-sizing: border-box;
	border: 0;
	padding: 0;
	margin: 0;
}

body {
	font-family: "Arial", Arial, Verdana;
	border: 0;
	padding: 0;
	margin: 0;
}

.grid-container {
 	display: grid;
	grid-gap: 10px;
	width: 100%;
	height: 100%;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-areas:
		'navbar navbar navbar'
		'me me me'
		'title title title'
		'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: #000000;	
}

.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: #996;
}

.me {
	grid-area: me;  
	display: flex;
	grid-gap: 10px;
	justify-content: center;
	align-items: center;
}

.me img {
	margin-top: 35px;
	border: 5px;
	border-style: solid;
	border-radius: 15px;
  	grid-column: 2 / 3;
	max-width: 66%;
	height: auto;
}

.title {
	grid-area: title;  
	display: flex;
	grid-gap: 25px;
	grid-template-columns: repeat(auto-fill, minmax(250, 1fr));
	justify-content: center;
	align-items: center;
}

.title p {
	margin: 0px 20px 0px 20px;
	background-color: #996;
	border: 5px;
	border-color: black;
	border-style: solid;
	border-radius: 25px;
	overflow: auto;
	padding: 10px;
	color: black;
	font-weight: bold;
	text-align: center;
}
	
.content {
	grid-area: content;
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fill, minmax(250, 1fr));
	justify-content: center;
	align-items: center;
}

.content img {
	border: 5px;
	border-style: solid;
	border-radius: 15px;
  	grid-column: 2 / 3;
	max-width: 66%;
	height: auto;
}

.content p {
	margin: 0px 20px 0px 20px;
	background-color: #996;
	border: 5px;
	border-color: black;
	border-style: solid; 
	border-radius: 25px;
	padding: 10px;
	color: black;
	text-align: center;
}
.footer {
	grid-area: footer;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #000000;	
	width: 100%;
}

.footer p {
	color: white;
	font-style: italic;
	font-size: xx-small;
}