* {
	margin: 0;
	padding: 0;
}

body {
	background: #F7F5F5;
	color: #594747;
	font-family: 'CatalinaClemente',sans-serif;
	font-size: 1rem;
	padding-bottom: 3rem;
}

h1,h2 {
	font-size: 2rem;
	font-weight: normal;	
}

h2 {
	font-size: 1.5rem;
}

#logo {
	width: 90%;
	max-width: 332px;
	margin: 2rem auto;
}

@media screen and (max-width:480px) {
	#logo {
		max-width: 150px;	
	}
}

#login {
	width: 302px;
	margin: 2rem auto 0;
}

input {
	width: 100%;
	height: 3rem;
	line-height: 3rem;
	font-size: 1.7rem;
	text-align: center;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
	background: #fff;
	color: #594747;
	-webkit-border-radius:.5rem;
	-moz-border-radius:.5rem;
	border-radius:.5rem;
	margin: .5rem 0;
	font-family: 'CatalinaClemente',sans-serif;
}

#password {
	background: #fff;
	color: #594747;
	border: 1px solid #594747;
}

#submit {
	cursor: pointer;
	color: #fff;
	background: #594747;
}

#errorMessage {
	display: none;
	color: #ff001a;
	text-align: center;
}

.error #errorMessage {
	display: block;
}

.error #password {
	border: 1px solid #ff001a;
	color: #ff001a;
}

.content {
	width: 90%;
	margin: 1rem auto;
	max-width: 854px;
	text-align: center;
}

#video {
	margin: 1rem auto;
}

a:link,
a:visited {
	color: #30bde3;
	text-decoration: none;
}

a:hover,
a:active {
	color: #e64834;
}

#navi {
	text-align: center;
	padding: .5rem;
	font-size: 1rem;
}

ul#navi {
	list-style: none;
	max-width: 300px;
	margin: 0 auto;
}

ul#navi li,
ul#navi li a {
	display: block;
}

#navi a {
	color: #594747;
	text-decoration: none;
	display: inline-block;
	padding: 1rem;
	font-size: 1.2rem;
	margin: .5rem;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	transition:all .5s ease-in-out;
}

#navi a:hover {
	background: #30bde3;
	color: #ff;
}