@import "normalize.css";
@import "colors.css";

html {
  background-color: var(--cosmic-deep);
  color: var(--starlight-primary);
  height: 100vh;
}

body {
  height: 100%;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  width: 100%;
}

header > .brand {
  font-weight: bold;
  font-size: 1.5rem;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

nav > a {
  text-decoration: none;
  color: var(--starlight-primary);
}

section.placeholder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  height: 90%;
}
