* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  height: 100dvh;
  background-color: color-mix(in srgb, var(--purple-2), var(--blue-2));
  background-image: linear-gradient(var(--purple-2), var(--blue-2));
  font-family: "Inter", sans-serif;
  color: color-mix(in srgb, var(--gray-11), var(--gray-12));
  overflow: hidden;
}

/* Stars */
#stars {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

#content {
  position: relative;
  z-index: 1;
}

/* Header */
h1 {
  display: inline-block;
  width: 75%;
  font-family: "Roboto Mono", monospace;
  font-size: 1.4rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-12);
  color: var(--gray-12);
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 0 0 1.5rem 1.5rem;
  box-shadow: 0 5px 10px rgba(255, 255, 255, 0.25);
}

header p {
  font-size: 0.9rem;
}
