*{
	margin:0px;
	padding:0px;
	box-sizing: border-box;
}

html, body{
	min-height:100%;
}

body{
	/*background-color:rgb(245,245,245);*/
	background:linear-gradient(90deg,powderblue,pink);
	background:linear-gradient(90deg,rgb(3, 252, 198),rgb(238, 148, 242));
}

a{text-decoration:none;color:white;}
a:active{text-decoration:none;color:white;}
a:visited{text-decoration:none;color:white;}
a:hover{text-decoration:none;color:white;}
a:link{text-decoration:none;color:white;}
/*This is to offset the logo from moving slightly when in an link*/
a{position:relative; top:3px;}


#header{
	background-color:rgba(255,80,59,1);
	width:100%;
	min-width:300px;
	height:60px;
	position:fixed;
	top:0;
	left:0;
	right:0;
	margin:auto;
	padding:20px;
	z-index:1;
	transition:all 0.4s ease-in-out;
	display:flex;
	align-items:center;
	justify-content:space-between;

	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
	-webkit-justify-content:space-between;
	-webkit-align-items:center;
}

#logo{
	height:35px;
}

#menubox{
	background-color:;
	height:50px;
	width:150px;
	text-align:right;
}

#menuicon{
	width:50px;
	height:50px;
	cursor:pointer;
}

#menulist{
	background-color:;
	width:inherit;
	list-style:none;
	font-size:20px;
	font-family: 'Oswald';
	height:0px;
	overflow:hidden;
	padding:0px;
	text-transform:uppercase;
	cursor:pointer;
	transition:all 0.4s ease-in-out;
}

#menulist li{
	background-color:rgba(255,80,59,1);
	padding-right:4px;
}

#menulist li:hover{
	color:#FFE000;
	color:rgb(50,50,50);
}

#menulist li{
	border-bottom:1px solid white;
}

#aboutbox{
	background-color:white;
	width:90%;
	max-width:1800px;
	height:auto;
	margin:0px auto;
	margin-top:72px;
	box-shadow:-1px 1px 4px rgba(0,0,0,0.2);
	border-radius:3px;
	font-size:16px;
	padding:8px;
	color:rgb(70,70,70);
	transition:all 0.2s ease-in-out;
}

#aboutbox h1{
	color:black;
	display:block;
	font-size:22px;
	text-transform:uppercase;
	text-decoration:underline;
	text-decoration-color:#FF503B;
	margin-bottom:2px;
}

#grid{
	width:90%;
	max-width:1800px;
	margin:12px auto;
	display:grid;
	grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
	grid-template-rows:repeat(auto-fill,minmax(240px,1fr));
	grid-auto-rows:minmax(240px,1fr);
	grid-gap:24px;
	transition:all 0.2s ease-in-out;
	margin-bottom:100px;
}

#footer{
	transition:all 0.3s ease-in-out;
	transform:translateY(40px);


	background-color:#FF008D;
	position:relative;
	color:white;
	height:40px;
	width:100%;
	position:fixed;
	bottom:40px;
	left:0;
	display:flex;
	align-items:center;
	justify-content:center;
	font-family:Oswald;
	font-size:12px;
}

#footer a{
	height:40px;
	display:flex;
	justify-content:center;
	align-items:center;
	transition:all 0.3s ease-in-out;
}

#footer a:hover{
	transform:rotate(360deg);
	-webkit-transform:rotate(360deg);
}

#footer img{
	height:70%;
	margin-left:8px;
	margin-right:8px;
}

.Mpdescription{
	color:rgba(0,0,0,0);
}

@media screen and (max-width: 880px){

	.Mptrack{
		font-size:12px;
	}

	.Mpplus{
		display:none;
	}

}

@media screen and (max-width: 570px){
	#logo{
		height:20px;
	}

	#menubox{
		width:100px;
	}
	
		.Mptrack{
		height:35px;
		display:flex;
		justify-content:center;
		align-items:center;
	}

	.Mptrackactive{
		height:35px;
		display:flex;
		justify-content:center;
		align-items:center;
	}

	.Mpprogresscontainer{
		height:20px;
	}
}