.container {
    display: flex;
    
}



header {
    background-color: aqua;
}

nav {
    width:200px;
    background-color: aquamarine;
}

article {
  flex: 1;
    background-color: blue;
}

footer {
    background-color: blueviolet;
}