@charset "utf-8";
/* CSS Document */

body {
	background:#FFFFFF;
	padding: 0;
	margin: 0;
}

.navi {
	list-style: none;
	display: flex;
	gap:4%;
	align-items: center;
	justify-content: center;
	min-height: 90px;
	color:#557153;
}

.navi a:link, a:active {
	font-family: 'Libre Baskerville', serif;
	font-size: 1.5em;
	color:#E6E5A3;
	text-decoration: none;
}

.footer ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	
}

.navi a:hover, a:visited {
	color:#000000;
}

.end {
	padding: 2%
}

.container {
	width: 90%;
	background:#7D8F69;
	margin:auto;
	border: 1px solid#FFFFFF;
}

.container1 {
	width: 90%;
	background: #557153;
	margin:auto;
	border: 1px solid#557153;
}

.main {
	background:#A9AF7E;
	min-height: 450px;
	padding: 2%;
	text-align:center;
}

p,li,ui,ol{
	font-size:12pt;
	line-height: 15pt;
	letter-spacing:0.1pt;
	color:black;
}

.aside-left {
	min-width: 50%;
	max-width: 50%;
	min-height: 300px;
	background:#557153;
	float:left;
	padding:1%;
	box-sizing:border-box;
}

.aside-right {
	min-width: 50%;
	max-width: 50%;
	min-height: 300px;
	background:#E6E5A3;
	float:left;
	padding:1%;
	box-sizing:border-box;
}

.row {
	padding:10px;
	background:#FAD6A5;
	display: flex;
	gap:2%;
	justify-content: center;
}

.column {
	min-width: 30%;
	background: #A9AF7E;
	min-height: 200px;
	padding: 2%;
	box-sizing: border-box;
	border-radius: 15px;
}

h2 {
	font-family: 'Libre Baskerville', serif;
}

.footer {
	list-style: none;
	display: flex;
	gap:4%;
	align-items: center;
	justify-content: center;
	min-height: 90px;
	color:#557153;
}

@media (max-width:992px) {
	.row {
		display:block;
	}
	.column {
		width:100%;
		margin:10px auto;
	}
	.aside-right {
		float:none;
		width:100%;
		margin:10px auto;
	}
	.navi {
		display:block;
	}
}