:root {
  --black: #090909;
  --grey: #292929;
  --grape: #7d2d9d;
  --amethyst: #a56bd5;
  --text-clr: #eac2fa;
  --persian-pink: #f179b5;
  --lavendar-blush: #e0d8de;
}

html {
  background-color: var(--black);
  color: var(--text-clr);
}

header {
  background-color: var(--grey);
  border-bottom: var(--amethyst) 1px solid;
  padding: 0 1rem;
  display: flex;
  align-items: center;
}

header>div {
  flex: 0.5;
}

header>nav {
  flex: 4;
}

nav>ul {
  display: flex;
  flex-direction: row;
}

main {
  min-height: 80vh;
}

footer {
  background-color: var(--grey);
  padding: 0.5rem;
}

.nav-item {
  padding: 1rem;
  font-size: 2rem;
}

#soon {
  font-size: 5rem;
  text-align: center;
}

.disabled {
  color: currentColor;
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: none;
  pointer-events: none;
}