/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


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

/* -------- COLOR PALETTE -------- */
:root {
  --bg: #0f1021;        /* night sky */
  --panel: #16182e;     /* card background */
  --text: #e6e6fa;      /* soft white */
  --accent: #ff77a8;    /* celeste pink */
  --accent2: #5ddcff;   /* soft cyan */
}

/* -------- PAGE BASICS -------- */
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'VT323', monospace;
  font-size: 20px;
  line-height: 1.6;
  padding: 24px;
}

/* -------- LAYOUT -------- */
.container {
  max-width: 640px;
  margin: auto;
  background-color: var(--panel);
  border: 4px solid var(--accent);
  padding: 20px;
}

/* -------- HEADER -------- */
header {
  text-align: center;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  color: var(--accent2);
}

.subtitle {
  font-size: 20px;
  color: var(--accent);
}

/* -------- SECTIONS -------- */
section {
  margin-bottom: 24px;
}

h2 {
  font-size: 28px;
  color: var(--accent2);
  margin-bottom: 8px;
}

/* -------- LISTS -------- */
ul {
  list-style: none;
}

li {
  margin-bottom: 6px;
}

/* -------- FOOTER -------- */
footer {
  text-align: center;
  font-size: 16px;
  opacity: 0.7;
}

