section.not-found-section {
  position: relative;
  overflow: hidden;
  height: 100%;
}

section.not-found-section::before {
  content: "";
  width: 700px;
  height: 700px;
  border-radius: 700px;
  background: linear-gradient(0deg, #4deaff 0%, #002bff 100%);
  filter: blur(250px);
  position: absolute;
  bottom: -350px;
  left: -350px;
}

.not-found-section .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section.not-found-section .title {
  font-size: 32px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 40px;
  transform: translateY(-30px);
}
section.not-found-section .desc {
  color: var(--Powder-Blue, #aabadc);
  font-size: 1rem;
  margin-bottom: 40px;
}

section.not-found-section .contact {
  width: 220px;
  padding: 1rem;
}

@media screen and (max-width: 1024px) {
  section.not-found-section .wrapper {
    margin: auto;
    max-width: 90%;
  }
  section.not-found-section .title {
    transform: translateY(0);
  }
}
