@charset "utf-8";
/* This is a comment */

body {
	background: lightslategrey;
	padding: 0;
	margin: 0;
}

.container {
	width: 90%;
	background: whitesmoke;
	border: 1px solid #585252;
	margin: auto;
}
	
.main {
	background: lightgrey ;
	min-height: 450px;
	padding: 2%;
}

.homepage {
	position: relative;
	text-align: center;
	color: whitesmoke;
}

.top-left {
	position: absolute;
	top: 8px;
	left: 16px;
	padding: 15% 0 0 10%;
	color: whitesmoke;
	font-family: 'Arial Black', sans-serif;
	font-size:  13px
}

.purpose {
	text-align: center;
	padding: 5%;  
}

.column {
	width: 50%;
	align-items: center;
	background: whitesmoke;
	min-height: 200px;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
	margin: auto;
}

.aside-left {
	min-width: 48%;
	background: grey;
	min-height: 150px;
	width: 48%;
	float: left;
	margin: 2% 0 0 2%;
	padding: 1%;
	box-sizing: border-box;
	word-wrap: break-word;
}

.aside-right {
	min-width: 48%;
	background: lightgrey;
	min-height: 150px;
	width: 48%;
	float: left;
	margin: 2% 0 0 2%;
	padding: 1%;
	box-sizing: border-box;
}

.row {
	padding: 1%;
	background: whitesmoke;
	display: flex;
	gap: 2%;
	justfiy-content: center;
	margin: auto;
}

.bottom {
	background: whitesmoke;
	min-height: 450px;
	text-align: center;
	padding: 5%; 
}

.navi {
	list-style: none;
	display: flex;
	gap: 5%;
	align-items: center;
	justify-content: center;
	min-height: 90px;
	font-family: 'gill sans', sans-serif;
}

.navi a:link, a:active {
	color: darkslategrey;
	text-decoration: none;
	font-family: 'arial black', sans-serif;
	font-size: 1.3em;
}

.navi a:hover {
	color: darkslategrey;
	text-decoration: underline;
}

.navi a:visited {
	color: darkslategrey;
}

footer {
	min-height: 200px;
	background: burlywood;
	min-width: 80%;
	margin: auto;
}

p, h2 {
	font-family: 'Poppins', sans-serif;
}

@media (max-width: 992px) {
	.row {
		display: block;
	}
	
	.column {
		width: 100%;
		margin: 1% auto;
	}

	.aside-left {
		float: none;
		width: 100%;
		margin: 1% auto;
	}
	
	.aside-right {
		float: none;
		width: 100%;
		margin: 1% auto;
	}
}
	