html, body {
	font-family: Arial, sans-serif;
	font-size: 24pt;
	color: white;
	background-color: lightblue;
	background-image: radial-gradient(circle at top left, lightblue, blue);
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
}
h1 {font-size: 36pt;}
h2 {font-size: 24pt;}

.bttn-gradient {
	background: #1d89ff;
	background-image: linear-gradient(180deg,#00bbd4 0,#3f51b5);
	background-image: -webkit-linear-gradient(93deg,#3f51b5,#00bbd4);
	border-color: transparent;
	border-radius: 100px;
	box-shadow: 0 1px 2px rgba(0,0,0,.25);
	text-shadow: 0 1px 0 hsla(0,0%,100%,.25);
	color: #fff;
	font-size: 24px;
	font-family: inherit;
	padding: 5px 12px;
	outline: none;
	margin: 0;
	padding: 0;
	cursor: pointer;
	transition: all .3s cubic-bezier(.02,.01,.47,1);
}
.bttn-gradient:hover {
	background-image: linear-gradient(180deg,#00cbe4 0,#4f61c5);
	background-image: -webkit-linear-gradient(93deg,#4f61c5,#00cbe4);
}
.bttn-gradient:active {
	background-image: linear-gradient(180deg,#00cbe4 0,#4f61c5);
	background-image: -webkit-linear-gradient(93deg,#4f61c5,#00cbe4);
	transform: translate(5px, 5px);
	transition: 0.15s;
}
button {
	font-size: 24pt;
	width:250px;
	height:80px;
	text-align: center;
}

input[type=text], select {
	font-size: 24pt;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

input[type=button] {
	font-size: 24pt;
	width:250px;
	height:60px;
	float: right;
}

table {
	border-collapse: collapse;
	/*width: 60%;*/
}

table td, table th {
	border: 1px solid #ddd;
	padding: 8px;
}

table tr{background-color: #486cec;}

table tr:hover {background-color: #999;}

table th {
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: left;
	background-color: #003eca;
	color: white;
}