nav {
  flex-direction: column;
  gap: 1rem;
}
nav div:first-child {
  order: 2;
}
nav div:last-child {
  order: 1;
}
@media (min-width: 640px) {
  nav {
    flex-direction: row;
    justify-content: space-between;
  }
}