/*
	Home button styling
*/


button.home {
	display: block;
	margin: 30px auto;
	color: #ffc72c;
	background: #041E42;
	width: 75px;
	height: 75px;
	border-radius: 50px;
	border-width: 0;
	line-height: 1rem;
}

button:hover {
	transition-delay: .1s;
	opacity: .7;
}

button:active {
	opacity: 1;
}