html,body {
	height: 100%;
}

.content:before {
	content: "";
	position: fixed;
  left: 0;
  right: 0;
  z-index: -1;
  
  display: block;
	background: 
		linear-gradient(
      rgba(0, 0, 0, 0.3), 
      rgba(0, 0,0, 0.3)
    ), 
		url('img/background.jpg');
	background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center; 
  filter: blur(5px);
  -webkit-filter: blur(5px);
  min-height: 100%;
  width: 100%;
}

.content {
	color: #fff;
	width: auto;
	max-width: 1200px;
	margin: 0 auto;
}
.input-area {
	padding-top: 100px;	
	text-align: center;
}
.input-area h1 {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 40pt;
	font-weight: 700;
}
.input-area p {
	font-size: 16pt;
}
.input-area input[type=text] {
	background-color: transparent;
	color: #fff;
	border-color: #fff;
	text-align: center;
	padding: 10px;
	font-size: 16pt;
}
.result-area{
	padding: 20px;
	background-color: rgba(0,0,0,0.4);
	margin-bottom: 60px;
}
.authors {
	text-align: center;
	font-size: 10pt;
	position: fixed;
	bottom: 10px;	
	width: 100%;
	max-width: 1200px;	 
}
.authors p {
	background-color: rgba(0,0,0,0.5);
	padding: 10px;
	border-radius: 5px;
	display: inline;
}
.authors a{
	color: #fff;
	font-weight: bold;
}