body {
    margin: 0;
    padding: 0;
    background-color: White;
}

h1{
    font-family: 'Roboto', sans-serif;
    color: black;
}

h2{
	font-family: 'Roboto', sans-serif;
    color: black;
	text-align: center;
	
}

h3{
	font-family: 'Roboto', sans-serif;
    color: black;
}

h4{
	font-family: 'Roboto', sans-serif;
    color: black;
}

p{
    font-family: 'Roboto', sans-serif;
    font-size: 1.20em;
    color:black;
	
}

.container {
    width: 90%;
    background-color: white;
    margin: 0 auto;
    padding: 0;
    box-shadow: 0px 0px 10px gray;
	position: relative;
    text-align:center;
    color: white;
	
}


.top-left{
    position: absolute;
    top: 15px;
    left: 25px;
	font-size: 60px;
	text-align: left;
	
}

.main{
    background-color: #F0DFF4;
	min-height: 300px;
	justify-content: center;
	align-content: center;
    padding:auto;
    overflow: auto;
}

.aside-left{
	min-width: 38%;
    min-height: 600px;
	justify-content: center;
	float: left;
    margin: 2% ;
	padding: 3px;
    box-sizing: border-box;
	
}

.aside-right{
    min-width: 38%;
    min-height: 600px;
	justify-content: center;
	float: left;
    margin: 2%;
	padding: 2%;
	box-sizing: border-box;
	text-align: left;

}

.row{
    padding: 10px;
    display: flex;
    gap: 2%;
    justify-content: center;
	text-align: center;
	box-sizing: border-box;
    flex-wrap: wrap;
}

.column{
    width: 30%;
    background: white;
    min-height: 20%;
    padding: 1% 2%;
    box-sizing: border-box;
}

.column h2{
    text-align: center;
}

.img{
    width: 50%;
    height: auto;
    display: block;
    margin: auto;
}
.navi {
    min-height: 100px;
    list-style: none;
    display: flex;
    column-gap: 2rem;
    justify-content: center;
    align-items: center;
	font-size: 1.5em;
}

.navi a:link, a:active{
    font-family: 'Roboto', sans-serif;
    color: black;
    text-decoration: none;
    font-size: 1.2em;
}

.navi a:hover {
    color: black;
    text-decoration: underline;
}

.navi a:link, a:active{
    color: cadetblue;
}

.navi a:hover, a:visited{
    color: black;
}

footer{
    min-height: 150px;
    background: white;
    margin: 10px auto;
    padding: 10px;
}
.img{
    width :100%;
	height: auto;
	margin: auto;
	display: block;
	
}



@media (max-width:992px) {
    .row {
        display: block;
    }
    .column {
        width: 100%;
        margin: 10px auto;
        min-height: 30%;
        overflow: auto;
    }

    .main {
        display: block;
    }

    .aside-left{
        width: 100%;
        margin: 1% auto;
    }
    .aside-right{
        width: 100%;
        margin: 1% auto;
    }
    p{
        text-align: justify;
    }
    .img{
        float: left;
        margin-right: 2%;
    }
}


