html {
	height: 100%;
}

html,
body {
	margin: 0;
}

body {
	font-family: 'Barlow', sans-serif;
	font-size: 15px;
	background: #f6f6f6;
	display: flex;
	min-height: 100%;
}

.body {
	display: flex;
	width: 100%;
}

* {
	box-sizing: border-box;
}

.app_title {
	text-align: center;
	font-weight: bold;
	margin: 30px auto 10px;
	color: #fff;
	text-decoration: none;
	display: block;
	background: #111;
	padding: 8px 10px;
	font-family: 'ZCOOL QingKe HuangYou', cursive;
	letter-spacing: 0.1em;
	font-size: 24px;
	width: fit-content;
	font-style: italic;
}

.beta {
	text-align: center;
	color: #888;
	opacity: 0.7;
	letter-spacing: 0.2em;
	font-size: 0.8em;
	margin-bottom: 30px;
}

nav {
	background: #333;
	color: #eee;
	width: 300px;
	text-transform: uppercase;
}

nav .links a {
	display: block;
	font-size: 0.85em;
	letter-spacing: 0.1em;
	color: #aaa;
	padding: 8px 22px;
	/*border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

nav .links a:hover {
	background: rgba(0, 0, 0, 0.3);
	color: #eee;
}

nav .links a.active {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

main {
	width: 900px;
	padding: 0 30px 100px;
	margin: 0 auto;
	/*background: #fff;*/
}

button {
	cursor: pointer;
	border: none;
	border-radius: 0.1em;
	padding: 1em 1.5em 0.875em;
	background-color: #2ca53e;

	color: #fff;
	font-size: 0.875em;
	font-weight: bold;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	-webkit-appearance: none;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

button:hover {
	background-color: rgb(37, 179, 58);
}

button:active {
	background-color: #277b34;
}

button:disabled {
	opacity: 0.4;
	cursor: default;
}

label {
	/*display: block;*/
}

textarea {
	height: 7em;
}

input,
textarea,
select {
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
}

input,
textarea {
	width: 100%;
	padding: 12px;
	margin-bottom: 6px;;
}

select {
	padding: 0.25em;
}

input.result,
textarea.result {
	background: #d5ffbb;
}

input.time {
	width: 100px;
	text-align: center;
	font-weight: bold;
	letter-spacing: 0.1em;
}

hr {
	height: 3px;
	background: #aaa;
	columns: 0;
	border: 0;
}

main p {
	line-height: 1.5em;
}

a {
	color: #09f;
}

h1 {
	font-family: 'Fjalla One', sans-serif;
	font-size: 3em;
	font-weight: normal;
    border-bottom: 3px solid #ddd;
	/* color: #666; */
	color: #757068;
	margin-top: 0.5em;
    margin-bottom: 1em;
    padding-bottom: 0.1em;
}

h3 {
	color: #757068;
}


.resize-height {
	resize: vertical;
}
