/* 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 {
  color: white;
  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-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: #0f0;
  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;
}







.header a:hover {
  text-shadow: 0 0 5px #A6FF8C;
}


.header {
  background: #111;
  padding: 30px;        /* makes the bar taller */
  text-align: center;
}

.header a {
  font-size: 24px;      /* makes text bigger */
  color: #8BE01B;
  text-decoration: none;
  margin: 0 25px;
  font-weight: bold;

}




.status-box {
  position: absolute;        /* floats on screen */
  right: 30px;            /* distance from right edge */
  top: 150px;             /* distance from top */
  width: 230px;

  background: #111;
  color: #eee;            /* off-white text */
  padding: 15px;
  border: 1px solid #555;
  border-radius: 8px;

  font-size: 16px;
}


.status-title {
  color: #26C823;
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-bottom: 6px;
}

.status-text {
  font-size: 17px;
}



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