* {
	font-family:arial;
	color:white;
}
html {
	width:100%;
	height:100%;
}
body {
	position:absolute;
	margin:0;
	padding:0;
	width:100%;
	height:100%;
}
.normal_button {
	/* Button Text */
	font-family:arial;
	font-weight:600;
	font-size:150%;
	text-decoration:none;
	/* Button Size */
	width:150px;
	height:50px;
	/* Button Texture */
	border-bottom:6px solid #1a237e;
	border-right:6px solid #1a237e;
	border-top:6px solid #2196f3;
	border-left:6px solid #2196f3;
	background-color:#1e88e5;
	/* Other Properties */
	display:flex;
	align-items:center;
	justify-content:center;
	
}
.small_button {
	/* Button Text */
	font-family:Arial;
	font-weight:600;
	font-size:100%;
	text-decoration:none;
	/* Button Size */
	width:100px;
	height:33.3px;
	/* Button Texture */
	border-bottom:3px solid #1a237e;
	border-right:3px solid #1a237e;
	border-top:3px solid #2196f3;
	border-left:3px solid #2196f3;
	background-color:#1e88e5;
	/* Other Properties */
	display:flex;
	align-items:center;
	justify-content:center;
	
}