html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	color: #333;
	margin: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	background: rgba(229,225,230,.2);
}

a {
	color: rgb(0,100,200);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: rgb(0,80,160);
}

label {
	display: block;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

.submit-button {
	margin-top: 1em;
	cursor: pointer;
	background-color: #861f41;
	border-color: #861f41;
	color: #fff;
	display: inline-block;
	font-weight: 400;
	text-align: center;
	letter-spacing: .25rem;
	padding: .67vw .67vw;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: 0;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
	text-transform: uppercase;
	font-family: Acherus,sans-serif !important;
	box-shadow: 0 0 10px rgba(102,102,102,0.7);
}

.heading {
	background-color: #3b3c3e;
	color: white;
	padding: 2em;
}

label {
    text-align: left;
}

.research-area {
	flex-direction: column;
	align-items: flex-start;
}

.research-area input {
    margin-bottom: 1em;
}

.research-area label:first-child {
    margin-bottom: 2rem;
}