@charset "utf-8";
/* CSS Document */

body {
	padding: 0;
	margin: 0;
	font-family: 'Chivo Mono', monospace;
font-family: 'Manrope', sans-serif;
font-family: 'Mooli', sans-serif;
}

.container{
	width:80%;
	border: 1px solid black;
	margin: 0 auto;
	background-color:antiquewhite;
}

.navi {
	list-style: none;
	display: flex;
	gap:3%;
	justify-content: center;
	align-content: center;
	padding: 20px 0px

}
.navi a:link a:active {
	colour:purple;
	text-decoration: none;
}

.navi a:hover a:visited {
	color: burlywood;
	text-decoration: underline;
	
}

.main {
	display: flex;
	min-height: 750px;
    background-color: aliceblue
	
}

.aside-left {
	min-width: 60%;
	min-height: 450px;
	padding: 1%;
	box-sizing: border-box;
}

.aside-right {
	min-width: 40%;
	min-height: 450px;
	padding: 1%;
	box-sizing: border-box;
	
}

.img {
	width: 100%;
	height:auto;
}

.row {
	display:flex;
	justify-content: center;
	align-content: center;
	gap:2%
}

.column > h2 {
	text-align: center;
	color: black;
	padding: 10px;
}

.column {
	min-width: 30%;
	min-height: 200px;
	padding: : 1%;
	box-sizing: border-box;
}

.column-colour {
	background-color: azure;
	border-radius: 10px;
}
.footer {
	min-height: 250px;
	background-color: honeydew;
	colour: darkgrey;
	padding: 30px;
}

@media (max-width:992px) {
	.row {
		display: block;
	}
	.column {
		width:100%;
	}
	.main {
		dispaly: block;
	}
	.aside-left {
		width:100%
	}
	.aside-right {
		width:100%
	}
}