body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background: #2e3744; 
  }
  
  h1, h2 {
    color: white;
    text-align: center;
    text-decoration: underline;
  }
  
  h2 {
    margin-top: 30px;
  }
  
  p, ul {
    margin-bottom: 20px;
    color: lightgrey;
  }
  
  b {
    font-weight: bold;
    text-decoration: underline;
  }
  
  li {
    margin-bottom: 5px;
  }
  
  a {
    color: #007bff;
  }
  
  a:hover {
    text-decoration: underline;
  }

  .button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .button:hover {
    background-color: #508D48;
  }