html{
	background-color: white;
	height: 2000px;
	margin: 0;
	padding: 0;
	width: 100%;
}

#foreground{
	display: flex;
	align-items: center;
	padding: 10px;
	margin: 50px auto auto auto;
	height: 500px;
	width: 80%;
	background-color: rgba(5,5,5,0.5);
}

#background{
	position: fixed;
	top: 0;
	background-color: gray;
	width: 100%;
	height: 100%;
	z-index: -100;
	display: flex;
	flex-wrap: wrap;
	
}

#data{
	position: fixed;
	top: 50%;
	width: 50%;
	height: 50%;
	background-color: rgba(100,100,100,0.5);
	z-index: 100;
}

#background h1{
	position: relative;
	margin: 0;
	padding: 0;
	transition: all, 0.30s;
}