* {
	box-sizing: border-box;
	text-align: center;
}

body {
	font-family: 'Roboto', sans-serif;
	width: 100%;
}

header {
	position: relative;
	font-family: 'Roboto', regular;
	text-align: center;
	width: 100%;

	color: rgba(0, 0, 0, 0.8);
}

header h1 {
	margin-bottom: 0;
	font-size: 2.5rem;
}

header h2 {
	margin-top: 0;
	font-size: 1.8rem;
}

main {
	position: relative;
	max-width: 500px;
	margin: 100px auto 0;
}

main form {
	margin: 15px;
}

select {
	height: 75px;
	width: 400px;
	font-size: 0.875rem;
	padding: 0 15px;
	display: inline-block;
	
	background: transparent;
	outline: none;
	color: #726659;

	border: solid 1px #b3aca7;
	border-bottom: none;

	cursor: pointer;

	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
}

button {
	display: block;
	height: 50px;
	margin: 0;
	padding: 0 15px;
	width: 80%;
	font-size: 1.175rem;

	background: #b3aca7;
	outline: none;
	color: #f2f2f2;

	border: solid 1px #b3aca7;
	border-top: none;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;

	cursor: pointer;

	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
}

button:hover {
	background: rgba(0,0,0,0.1);
	color: #b3aca7;
}
