/* CSS for Index Page */

html, body{
	height: 100%;
	padding: 20px;
}
body{
	background-color: white;
}

*{
	box-sizing: border-box;
}

.index-page{
	display: none;
	margin: auto auto;
	position:relative; top:50%; left:50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.credit{
	position: absolute;
	margin: 0 0;
	padding: 5px 5px;
	bottom: 0px;
	right: 0px;
}

