* {
    margin: 0;
	padding: 0;
	box-sizing: border-box;
    font-family: sans-serif;
    font-weight: 100;
    margin: auto;
    color: aliceblue;
    font-size: 1rem;
}

body {
    display: flex;
    flex-wrap: wrap;
    background-color: #341f97;
}

header {
    min-width: 100%;
    height: 5rem;
    background-color: #10ac84;
    text-align: center;
}

main {  
    align-items: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: #01a3a4;
    justify-content: center;
    text-align: center;
    height: 800px;
}

.sectitle {
    min-width: 100%;
    height: 5%;
}

section {
    display: flex;
    padding: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    height: 90%;     
    width: 70%;
    background-color: #2e86de;
}

aside {
    height: 90%;
    width: 29%;
    background-color:#8395a7; 
}

section article {

    display: inline-block;
    width: 30%;
    height: 40%;
    background-color: #ee5253;
   
}

footer {
    justify-content: flex-end;
    text-align: center;
    width: 100%;
    height: 150px;
    background-color: #341f97;
}

h2 {    padding-top: 1rem;}