/* 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." */
/* === GLOBAL STYLES === */
body {
  background: #1a1a1a;
  color: #e6e6e6;
  font-family:verdana;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* === CONTAINER === */
.container {
  max-width: 720px;
  margin: 60px auto;
  padding: 30px;
  background: #222;
  border: 1px solid #444;
  border-radius: 10px; /* subtle round edges */
}

/* === HEADINGS === */
h1 {
  text-align: center;
  font-size: 36px;
  letter-spacing: 12px;
  color: #9cff57; /* neon green */
  text-shadow: 0 0 5px #9cff57, 0 0 10px #9cff57;
}

h2 {
  margin-top: 40px;
  color: #cfff7a; /* softer neon for smaller headings */
}

/* === SECTIONS === */
.section {
  margin-top: 40px;
  padding-left: 15px;
  border-left: 2px dashed #555; /* subtle gray, not neon */
}

/* === LINKS === */
a {
  color: #9cff57; /* neon green links */
  text-decoration: underline wavy;
  transition: 0.3s;
}

a:hover {
  color: #cfff7a;
  text-shadow: 0 0 10px #9cff57; /* glow only on hover */
}

/* === LISTS === */
ul {
  padding-left: 20px;
  list-style: none;
}

ul li::before {
  content: "■";
  color: #9cff57; /* small neon accent on bullets */
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

ul li {
  margin-bottom: 10px;
}

/* === PARAGRAPHS === */
p {
  margin-bottom: 20px;
}
a {
text-decoration:underline wavy;
}

 /*#97DB3D*/
 /*
body {
    background-color: gray;
    color: white;
    font-family: verdana;
    display:flex;
    justify-content:center;
}*/