/* 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." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
  /* =========================
   GLOBAL RESET
========================= */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BASE LAYOUT
========================= */
body {
  background-color: #0f1117;        /* deep blue-black */
  color: #e6edf3;                   /* soft white */
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  padding: 40px;
}

/* =========================
   HEADINGS
========================= */
h1, h2, h3 {
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

h1 {
  font-size: 2.5rem;
  text-shadow: 0 0 10px rgba(0, 150, 255, 0.3);
}

/* =========================
   LINKS
========================= */
a {
  color: #58a6ff;     /* subtle neon blue */
  text-decoration: none;
  transition: 0.3s ease;
}

a:hover {
  color: #8ccfff;
  text-shadow: 0 0 8px rgba(88,166,255,0.6);
}

/* =========================
   CONTAINERS / CARDS
========================= */
.card {
  background: #161b22;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

/* =========================
   NAV BAR (Optional)
========================= */
nav {
  margin-bottom: 30px;
}

nav a {
  margin-right: 20px;
  font-weight: 500;
}

/* =========================
   BUTTONS
========================= */
button {
  background: #21262d;
  color: #e6edf3;
  border: 1px solid #30363d;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s ease;
}

button:hover {
  background: #30363d;
  box-shadow: 0 0 10px rgba(88,166,255,0.3);
}

/* =========================
   SCROLLBAR (Chrome-based)
========================= */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0f1117;
}

::-webkit-scrollbar-thumb {
  background: #30363d;
  border-radius: 10px;
}
