@charset "Utf-8";

* {
	margin: 0;
	padding: 0;
}

body {
	min-height: 100vh;
}

.Page {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.Menu {
	text-align: left;
	padding: 1%;
	list-style-type: none;
	text-indent: 1em each-line;
	display: flex;
	flex-direction: column;
}

.Refer {
	text-align: center;
	padding: 2%;	
}

Main {
	padding: 1%;
	vertical-align: top;
	text-indent: 1.5em;
}

footer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 2%;
	align-items: center;
	background-color: #2AFD00;
}

.center {
	background: #FFFFFF;
	display: grid;
	grid-template-columns: 1fr 5fr;
	vertical-align: top;
	flex-grow: 1;
}

h1 {
	text-align: center;
	font-weight: bold;
	line-height: 2;
}

h2 {
	text-align: center;
	font-weight: bold;
	color: blue;
	line-height: 2;
}

ul, ol, p {
	text-indent: 1em;
	font-size: large;
}

ul, ol {
	list-style-position: inside;
}

Main p {
	padding-top: 0.5em;
}