/* style.css */

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #000000; /* True black */
    color: #e0e0e0; /* Light grayish-white text */
    line-height: 1.6;
  }
  
  header {
    background-color: #000000;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.8em;
    font-weight: bold;
  }
  
  main {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  section p {
    margin-bottom: 1.5em;
    font-size: 1.1em;
  }
  
  a {
    color: #4ea8ff; /* Soft blue */
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  hr {
    border: none;
    height: 1px;
    background-color: #333;
    margin: 2em 0;
  }
  
  ul {
    padding-left: 1.5em;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #888;
    background-color: #000;
  }
  
  h1, b {
    color: white;
  }
  
  font[color="blue"] {
    color: #4ea8ff;
  }
  