body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
  }
  
  .container {
    display: flex;
    margin-bottom: 10;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
  }

  
  
  img {
    width: 200px;
    margin-bottom: 20px;
  }
  
  h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .subscribe-form {
    display: inline-block;
    flex-direction: column;
    align-items: center;
  }
  
  .subscribe-form input[type="email"] {
    padding: 10px;
    width: 250px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  
  .subscribe-form button[type="submit"] {
    padding: 10px 20px;
    background-color: #ff8800;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  
  .subscribe-form button[type="submit"]:hover {
    background-color: #ff6600;
  }
  
 


  footer {
    background-color: #222;
    padding: 10px 0;
    text-align: center;
  }
  
  footer p {
    font-size: 14px;
    margin: 0;
    color: #ccc;
  }
  
  /* Mobile Responsive Styles */
  @media only screen and (max-width: 600px) {
    .container {
      padding: 20px;
    }
  
    img {
      width: 150px;
    }
  
    h1 {
      font-size: 28px;
      margin-bottom: 8px;
    }
  
    p {
      font-size: 16px;
      margin-bottom: 16px;
    }
  
    .subscribe-form input[type="email"] {
      width: 100%;
      margin-bottom: 10px;
    }
  
    .subscribe-form button[type="submit"] {
      width: 100%;
    }
  
    footer p {
      font-size: 12px;
    }
  }

  