/* estilo ejercicio 3 */

body {
    width: 1200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

header {
    height: 10rem;
    background-color: darkseagreen;
}

main {
    background-color: blueviolet;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    max-width: 100%;
    display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	align-content: space-around;
}

section {
    background-color: darkturquoise;
    width: 50rem;
    display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	align-content: space-around;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
}

article {
    height: 18rem;
    width: 15rem;
    background-color: orange;
    margin: 0.5rem 0.5rem 0.5rem 0.5rem;
}

aside {
    width: 22rem;
    height: 39rem;
    background-color: darkgray;
    
}

footer {
    height: 10rem;
    background-color: darkseagreen;
}
