body {
  display: flex;
}

nav {
  background: orange;
  flex: 2;
}

main {
  flex: 5;
  background: cyan;
  display: flex;
  flex-direction: column;
}