/* css/style.css */

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #eee; /* light text on dark background */
  background-color: #121212; /* dark gray, not pure black */

  /* deep purple radial gradient */
  background-image: radial-gradient(
    ellipse at center,
    rgba(102, 51, 153, 0.6) 0%,    /* deep purple core */
    rgba(18, 18, 18, 1) 70%        /* fade into dark gray */
  );

  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* headings */
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-transform: lowercase;
}

/* tagline */
p {
  font-size: 1.25rem;
  color: #bbb;
  margin-top: 0;
}
