    body {
      margin: 0;
      padding: 0;
      font-family: "Poppins", sans-serif;
      background: linear-gradient(135deg, #111, #2b2b2b);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      text-align: center;
    }
    h1 {
      font-size: 3em;
      color: #00ffcc;
      text-shadow: 0 0 10px #00ffcc;
      margin-bottom: 10px;
    }
    p {
      font-size: 1.2em;
      color: #ccc;
      max-width: 600px;
      margin: 0 auto 30px;
      line-height: 1.5em;
    }
    .button {
      background-color: #00ffcc;
      color: #111;
      padding: 15px 40px;
      border: none;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 0 15px #00ffcc;
      transition: all 0.3s ease;
    }
    .button:hover {
      background-color: #00e0b5;
      box-shadow: 0 0 25px #00ffcc;
      transform: scale(1.05);
    }
    footer {
      position: absolute;
      bottom: 20px;
      font-size: 0.9em;
      color: #777;
    }
  body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 13px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
