* {
  margin: 0;
  padding: 0;
}
body {
  background: #000;
}
.gradient {
  border-radius: 1076px;
  opacity: 0.4;
  position: absolute;
  left: 18%;
  top: -10%;
  width: 60%;
  height: 30%;
  background: linear-gradient(15deg, #f0f 33.23%, #0ff 73.31%);
  filter: blur(150px);
  z-index: -1000 !important;
}
.error-page {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}
.error-container {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.error-code {
  color: #fff;
  font-weight: bold;
  font-size: 55px;
  margin-bottom: 10px;
}
.error-title {
  color: #fff;
  margin-bottom: 33px;
  font-size: 24px;
  font-weight: 400;
}

.error-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 256px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.error-link {
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 20px;
}

@media (max-width: 1200px) {
  .gradient {
    left: 10%;
    width: 80%;
  }
}

@media (max-width: 800px) {
  .gradient {
    left: 8%;
    width: 90%;
  }
  .error-title {
    font-size: 20px;
  }
  .error-btn {
    width: 220px;
    height: 50px;
  }
  .error-link {
    padding: 15px 20px;
    font-size: 18px;
  }
  .error-image {
    width: 60%;
  }
}
@media (max-width: 480px) {
  .gradient {
    left: 1%;
    top: -10%;
    width: 95%;
    height: 30%;
    filter: blur(100px);
  }

  .error-title {
    font-size: 17px;
  }
  .error-btn {
    width: 200px;
    height: 40px;
  }
  .error-link {
    padding: 15px 20px;
    font-size: 16px;
  }
  .error-image {
    width: 50%;
  }
}
