@font-face {
    font-family: Litera;
    src: url(fonts/litera-regular.ttf);
}

body{
	font-family: "Litera","Lucida Grande","Helvetica Neue","Helvetica","Arial","Verdana","sans-serif";
	color: #4d4e53;
	margin: 0;
	text-align: center;
}

header h1{
	background-color: #455a64;
	color: #fff;
	margin: 0;
	padding: 30px;
	font-size: 2.5em;
}

header h2{
	background-color: #f5f5f5;
	color: rgba(0,0,0,.87);
	margin: 0;
	padding: 15px 30px;
	font-size: 2em;
}


#resultado{
	color: #333;
	margin: auto;
	margin-top: 15px;
	display: inline-block;
}

#resultado table
{
	font-size: 12px;
	background: #fff;
	margin: 45px;
	width: 480px;
	border-collapse: collapse;
	text-align: left;
}
#resultado table th
{
	font-size: 14px;
	color: #27496d;
	font-weight: normal;
	padding: 10px 8px;
	border-bottom: 2px solid #27496d;
}
#resultado table td
{
	padding: 9px 8px 0px 8px;
}
#resultado table tbody tr:hover td
{
	color: #27496d;
}

input[type="text"] {
	display: inline-block;
	margin: auto;
	width: 200px;
	font-size: 18px;
	appearance: none;
	box-shadow: none;
	border-radius: none;
	padding: 10px;
	border: none;
	border-bottom: solid 2px #27496d;
	transition: border 0.3s;
}
input[type="text"]:focus {
  outline: none;
  border-bottom: solid 2px #969696;
}

button {
 	display: inline-block;
	margin: auto;
	margin-top: 20px;
	padding: 3px 13px;
	font-size: 24px;
	line-height: 1.8;
	appearance: none;
	box-shadow: none;
	border-radius: 0;
	color: #fff;
	background-color: #27496d;
	text-shadow: -1px 1px #417cb8;
	border: none;
}
button:focus {
  outline: none
}

button:hover,
button.hover {
  background-color: #346392;
  text-shadow: -1px 1px #27496d;
}
button:active,
button.active {
  background-color: #6496c8;
  text-shadow: -1px 1px #193047;
}