/* GENERAL */

html, body {
	padding: 0;
	margin: 0;
	font-family: "Slabo 27px", "Verdana", "Geneva", sans-serif;
	text-align: center;
	width: 100%;
	font-size: 3vmin;
	background-color: #363550;
	color: #ffffff;
}

/* CONTAINER */

.container {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}

/* HEADER */

header {
}

/* MAIN */

main {
	padding: 5% 0;
}

/* FORM */

form {
}

input[type = "text"] {
	font-family: "Slabo 27px";
	font-size: 3vmin;
	border: none;
	border-bottom: 1px solid #ffffff;
	background-color: inherit;
}

::-webkit-input-placeholder {
	color: #ffffff;
}

:-ms-input-placeholder {
	color: #ffffff;
}

::-moz-placeholder {
	color: #ffffff;
	opacity: 1;
}

:-moz-placeholder {
	color: #ffffff;
	opacity: 1;
}

input {
	color: #ffffff;
}

input[type = "text"]:focus {
	outline: none;
}

input[type = "submit"] {
	border-radius: 5px;
	cursor: pointer;
	border: none;
	background-color: #ffffff;
	color: #363550;
	font-size: 3vmin;
	width: 10%;
	transition: all 0.5s ease;
	border: 1px solid #363550;
}

input[type = "submit"]:hover {
	border: 1px solid #ffffff;
	color: #ffffff;
	background-color: #363550;
}

/* FOOTER */

footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	padding-bottom: 3%;
}

footer > a {
	color: #ffffff;
	text-decoration: none;
	position: relative;
}

footer > a:hover {
	color: #ffffff;
}

footer > a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: #ffffff;
	visibility: hidden;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}

footer > a:hover:before {
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}