/* General body styling: Black background, green text */
body {
    background-color: #000000; /* Pure black using HEX code */
    color: #008000;            /* Default green using HEX code */
    font-family: sans-serif;   /* Optional: Sets a clean, readable font */
    margin: 0;                 /* Optional: Removes default margin */
    padding: 20px;             /* Optional: Adds some space around content */
}

/* Header styling: Darker green background, white text for contrast */
h1, h2 {
    background-color: #004d00; /* A darker shade of green for emphasis */
    color: #00ff00;            /* White text ensures good contrast and readability */
    padding: 10px;
}
h3 {
  color: #00ff00;
}
/* A specific class for a black content area */
.content-box {
    background-color: rgb(0, 0, 0);   /* Black using RGB values */
    color: rgb(0, 128, 0);            /* A brighter green using RGB values */
    border: 1px solid #008000;        /* A green border */
    padding: 15px;
    margin-top: 20px;
}


