@charset "UTF-8";
/* CSS Document */

body {
	background-color:#E0DADA;
	padding: 0;
	margin: 0;
}
.navi {
	list-style: none;
	display: flex;
	gap: 10%;
	justify-content: center;
	align-items: center;
	min-height: 70px;
}

.navi a:link, a:active {
	font-size: 1em;
	font-family: 'Montserrat', sans-serif;
	color: #D4D2D1;
	text-decoration: none;
}

.navi a:hover, a:visited {
	color:#AAA0A0
}

.container {
	width: 100%;
	background: #778F84;
	margin: auto;
	border: 1px;
}

.main {
	background: #E0DADA;
	min-height: 450px;
}

.aside-left {
	min-height: 450px;
	min-width: 40%;
	float: left;
	padding: 0%;
}

.aside-right {
	min-height: 250px;
	min-width: 60%;
	float: left;
	padding: 0%;
}

.row {
	padding: 10px;
	background:#84A1A2;
	display: flex;
	gap: 1.5%;
	justify-content: center;
	box-sizing: border-box;
	border-radius: 15px;
	max-width: 90%;
	margin: auto;
}

.column {
	min-width: 30%;
	min-height: 200px;
	padding: 3%;
	box-sizing: border-box;
	border-radius: 15px;
}

h1, h2 {
	font-family: 'Philosopher', sans-serif;
	font-size: 1.5em;
	color: #203032;
	text-align: center;
}

h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
	color: #203032;
	text-align: justify;
}

p {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.9em;
	color: #203032;
	text-align: justify;
}

p a:link, a:active {
	color: #BB6E6F;
	text-decoration: none;
}

li a:link, a:active {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1em;
	color: #BB6E6F;
	text-align: justify;}

footer {
	min-height: 90px;
	background:#4D4444;
	padding: 2%;
	list-style: none;
	display: flex;
	gap: 10%;
	justify-content: center;
	align-items: center;
}

footer a:link, a:active {
	font-size: 0.9em;
	font-family: 'Montserrat', sans-serif;
	color: #D4D2D1;
	text-decoration: none;
}

footer a:hover, a:visited {
	color: #ADADAD;
}

@media (max-width:992px) {
	.row {
		display: block;
	}
	.column {
		width: 100%;
		margin: 10px auto;
	}
	.aside-left {
		float: none;
		width: 100%;
		margin: 10px auto;
	}
	.aside-right {
		float: none;
		width: 100%;
		margin: 10px auto;	
	}
	.navi {
		display: block;
	}
}
		