:root {
	--primary-color: #000000;
	--secondary-color: #d9f0e5;
	--tertiary-color: #e8787c;
	--quaternary-color: #b2e8d1;
	--quinary-color: #e75c60;
	--senary-color: #38d793;
	--septenary-color: #00844b;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px;
	color: var(--primary-color);
	background-color: var(--secondary-color);
}

#page-container {
	position: relative;
	min-height: 100vh;
}

header {
	display: flex;
	justify-content: center;
	background-color: white;
	align-items: flex-start;
	width: 100%;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
}

header img {
	height: calc(100vh * 0.10);
	margin: 10px;
}

main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: var(--secondary-color);
	width: 100%;
	margin-top: 30px;
	padding-bottom: 125px;
}

.survey {
	margin: 10px;
	margin-bottom: 20px;
	padding: 10px;
	border-radius: 10px;
	background-color: var(--quaternary-color);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
	width: calc(100% - 40px);
	max-width: 600px;
	transition: all 0.2s ease-in-out;
}

.submitbutton {
	margin-top: 20px;
	padding: 10px;
	border-radius: 10px;
	background-color: var(--tertiary-color);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
	width: calc(100% - 40px);
	max-width: 300px;
	transition: all 0.2s ease-in-out;
	cursor: pointer;
}

.submitbutton:hover {
	background-color: var(--quinary-color);
}

footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 75px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: var(--quaternary-color);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
}

footer>div {
	display: flex;
	align-items: center;
}

a {
	color: var(--primary-color);
}