@import "reset.css";

body {
  background: white;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

header {
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  div {
    padding: 1rem;
  }
  nav {
    display: flex;
    gap: 1rem;
  }
}

main {
  padding: 1rem;
}

footer {
  padding: 1rem; 
  background: #ddd;
  margin-top: auto;
}
