<style>
body {
	background-color: black;
	font-family: 'Lemon';
	font-size: 32px;
}
body{animation: 2s ease-out 0s 1 FadeIn;}
@keyframes FadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
}
.option {
	width: 140px;
	height: 50px;
	margin-left: 100px;
	margin-right: 100px;
	background: gray;
	color: white;
	font-family: 'Lemon';
	font-size: 18px;
	padding: 16px;
	text-decoration: none;
	cursor: pointer;
	box-shadow: -5px 5px #999999;
	border: none;
	border-radius: 10px;
	display: block;
	text-align: center;
}
.option:hover {
	background-color: white;
	color: gray;
	box-shadow: -5px 5px #dddddd;
}
.option:active {
	backgroud-color: #BBBBBB;
	box-shadow: -3px 3px #444444;
	transform: translate(-3px, 3px);
}
</style>