body {
  background: linear-gradient(
    70deg,
    #002b2b 0%,
    #005050 15%,
    #357a7a 40%,
    #66b2b2 60%,
    #99cccc 85%,
    #cce6e6 100%
  );
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: repeat(2, 1ft);
  color: white !important;
  font-family: "Outfit", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 500 !important;
}
.error-card {
      background: rgba(0, 0, 0, 0.3);
      padding: 20px;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      max-width: 400px;
      width: 100%;
    }

    .error-card h1 {
      font-size: 2.2rem;
      margin-bottom: 10px;
    }

    .error-card p {
      font-size: 1.1rem;
      margin-bottom: 30px;
    }

    .error-card a {
      display: inline-block;
      padding: 12px 25px;
      background-color: #ffffff;
      color: #1f4037;
      font-weight: bold;
      border-radius: 10px;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .error-card a:hover {
      background-color: #ddd;
    }

    @media (max-width: 480px) {
      .error-card h1 {
        font-size: 1.8rem;
      }
      .error-card p {
        font-size: 1rem;
      }
    }