*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}


.container{
    background-color: blueviolet;
    width: 100vw;
    height: 60vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* gap: 50px; */
    justify-content: space-evenly;
    align-items: center;
    align-content: flex-start;
}
.container>header{
    background-color: antiquewhite;
    width: 150px;
    order: 1;
    /* height: 450px; */
}
.container>nav{
    background-color: aqua;
    width: 150px;
    /* height: 450px; */
}
.container>main{
    background-color: aquamarine;
    width: 150px;
    /* height: 450px; */
}
.container>aside{
    background-color: cadetblue;
    width: 150px;
}
.container>footer{
    background-color: tomato;
    width: 150px;
}