/* ---------- BASE COLORS & RESET ---------- */
:root {
  --color-1: #70393b;
  --text-color: #dc4848;
  --accent-color: #670aa4;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 12pt;
  font-family: Poppins, 'Segoe UI', Tahoma;
}

body {
  background-color: #230717;
}

/* ---------- TITLE ---------- */
 h1 {
  margin-top: 20px;
  color: #dc4848;
  text-align: center;
  font-family: 'Lexend', sans-serif;
  text-shadow: 0 0 20px;
}



