
    body {
      font-family: Arial, sans-serif;
      background-color: #ffffff;
      color: #333;
    }
    .error{
        text-align: center;
        border-top: 1px  solid rgb(128, 120, 120);
    }
    h1 {
      font-size: 150px;
      color: #222222;
      margin-top: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
      margin-top: 20px;
      


    }
    h2 {
      font-size: 30px;
      color: #222222;
    }
    p {
      font-size: 18px;
      color: #222222;
    }
    .container {
      margin-top: 50px;
    }
    .halloween-image {
      width: 300px;
      height: 300px;
      object-fit: cover;
      margin: 20px 0;
    }
    .button {
      background-color: #2c2b2b;
      border: none;
      padding: 15px 30px;
      font-size: 18px;
      color: white;
      cursor: pointer;
      border-radius: 5px;
      text-decoration: none;
      margin-top: 20px;
    }
    .button:hover {
      background-color: #ff3300;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      h1 {
        font-size: 100px;
      }
      .halloween-image {
        width: 200px;
        height: 200px;
      }
      h2 {
        font-size: 24px;
      }
      p {
        font-size: 16px;
      }
      .button {
        font-size: 16px;
        padding: 12px 24px;
      }
    }

    @media (max-width: 480px) {
      h1 {
        font-size: 80px;
      }
      .halloween-image {
        width: 150px;
        height: 150px;
      }
      h2 {
        font-size: 20px;
      }
      p {
        font-size: 14px;
      }
      .button {
        font-size: 14px;
        padding: 10px 20px;
      }
    }
