.header {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: var(--color-main);
}

nav a {
  margin-left: 16px;
  text-decoration: none;
  color: var(--color-text);
}

.footer {
  text-align: center;
  padding: 20px;
  background: #eee;
}

