*,*::before,*::after {
	box-sizing: border-box;
}

body {
	font-family: monospace;
	font-size: 12px;
	font-size: 0.75rem;
	margin:0;
}

.container {
	display: flex;
	flex-direction: column;
	height: 100vh;
	justify-content: space-between;
	/* background: lightpink; */
	padding: 2vh 2vw 2vh 2vw;
}

.header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	/* background: lightblue; */
}

.content {
	display: flex;
	flex: 1;
	flex-direction: column;
	/* background: orange; */
	max-width: 900px;
}

.content-title {
	padding-top: 15vh;
	padding-bottom: 8vh;
	/* background:lightgreen; */
}

.content-body {
	/* background: powderblue; */
}

.content-body > p {
	line-height:1.4rem;
	/* background:lavender; */
}

.footer {
	font-size: 10px;
	color: gray;
	text-align: center;
	/* background: lightyellow; */
}
