html {
	box-sizing: border-box;
	scroll-behavior: smooth;
	min-height: 100%;
	font-family: utopia-std, serif;
}

*,
*:before,
*:after {
	box-sizing: inherit
}

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	
}

body {
	margin: 0;
	min-height: 100vh;
	position: relative;
	padding-top: 44px;
}
main {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	padding-bottom: 20%;
}
h2 {
	margin-bottom: 8px;
}
p {margin: 0 0 12px}
main > div {
	
}
input {
	border: 1px solid #ccc;
	border-radius: 3px;
	height: 42px;
	padding: 10px 16px;
}
.btn {
	border: none;
	display: inline-block;
	padding: 0 28px;
	height: 36px;
	line-height: 36px;
	vertical-align: middle;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	background-color: inherit;
	text-align: center;
	cursor: pointer;
	white-space: nowrap;
	background: rgba(127, 188, 6, .65);
	color: #fff;
	text-shadow: none;
	border-radius: 4px;
	transition: all .2s ease-in-out;
	float: right;
}