body{
	align-content: center;
	margin: auto;
	display: flex;
    flex-flow: column nowrap;  
    justify-content: center;
    align-items: center;
  	min-width: 100vh;
    min-height: 100vh;
    font-family: CSANS;
}

button {
	background-color: rgb(0,200,60);
	border: rgb(0,100,30) solid 3px;
	border-radius: 3px;
	font-size: 30px;
	font-family: CSANS;
	
}

button.home {
	width: 60%;
}

button:hover {
	border-color: #f5f519;
	cursor: pointer;
	transition: 0.05s ease-in-out;
}

button.active {
	background-color: rgb(35, 246, 49);
	border-color: #f5f519;
}

@font-face {
font-family: CSANS;
src: url(/COMIC.TTF);
}

.feet {
	bottom: 0;
	position: absolute;
}