*{
	margin: 0;
	padding: 0;
}

body{
	min-height: 100%;
	position: relative;
	width: 100%;
}

header{
	height: 200px;
	background: #00fff2;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 7vh;
	font-family: Arial;
}
.img{
	height: 400px;
}

nav{
	
	height: 80px;
	display: flex;
	flex-direction: row;
}

section{
	background: #ff00f2;
	font-size: 40px;
	position: relative;
	min-height: calc(100% - 380px);
	padding: 20px;
	box-sizing: border-box;
}

footer{
	background: #ff00f2;
	height: 100px;
	width: 100%;
}

.link{
	
	display: flex;
	flex-grow: 1;
	justify-content: center;
	align-items: center;
	background: #008383;
	text-decoration: none;
	font-size: 4vh;
	font-family: Arial;
	color: black;
}

.link:hover{
	
	background: #DDD;
}

#SquareGrid{
	width: 100%;
	height: 90%;
	//border: solid 2px green;
}

#TopRow{
	width:100%;
	height:50%;
	//border: solid 2px blue;
	position: relative;
}

#BottomRow{
	width: 100%;
	height:50%;
	//border: solid 2px red;
	position: relative;
}

.info{
	height: 10%;
	background-color: black;
	position: absolute;
	width: 100%;
	bottom: 5px;
	color: #FFF;
}

.img{
	height: 100%;
}

.box{
	font-family: Arial;
	font-size: 3vh;
	text-align: center;
	\\width: 45%;
	height: 90%;
	margin: 15px;
}

#topLeft{
	background: #666;
	position: absolute;
	left: 0;
	top: 0;
}

#topRight{
	background: #666;
	position: absolute;
	right: 0;
	top: 0;
}

#bottomLeft{
	background: #666;
	position: absolute;
	left: 0;
	top: 0;
}

#bottomRight{
	background: #666;
	position: absolute;
	right: 0;
	top: 0;
}











