.container {
  position: fixed;
  width: 100%;
  height: 100%;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

h1 {
  text-align: center;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: .5em;
  line-height: 2em;
  color: #323232;
  font-family: 'Exo 2', sans-serif;
}

h2 {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: .5em;
  line-height: 2em;
  color: #323232;
  font-family: 'Exo 2', sans-serif;
}

form {
  font-family: 'Lato', sans-serif;
	margin-left: auto;
	margin-right: auto;
	width: 343px;
	height: 750px;
	padding: 30px;
	border-radius: 5px;
	background-clip: padding-box;
	overflow: hidden;
}

input {
  font-family: 'Lato', sans-serif;
	width: 300px;
	height: 50px;
	border: 1px solid rgba(255,255,255,.4);
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	display: block;
	font-size: 18px;
	padding-right: 20px;
	margin-bottom: 20px;
}

textarea {
	width: 275px;
	height: 110px;
	border: 1px solid rgba(255,255,255,.0);
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	display: block;
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	padding-right: 20px;
	padding-top: 10px;
	margin-bottom: 10px;
	overflow: hidden;
  resize: vertical;
}

h1 span {
  color: red;
}

.button { 
    letter-spacing: .2em;
    -moz-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in;
}

.button:hover { 
    background: red;
}