.err-d-1-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(45deg, #000428, #004e92, #000428);
  background-size: 600% 600%;
  animation: bg 10s ease infinite;
  padding: 10px;
}
.err-d-1-sec .err-d-1 {
  background: linear-gradient(45deg, #000428, #004e92, #000428);
}
.err-d-1-sec .err-d-1 .content {
  width: 100%;
  max-width: 600px;
  text-align: center;
  color: #fafafa;
  border: 2px solid #fafafa;
  border-radius: 8px;
  padding: 20px;
}
.err-d-1-sec .err-d-1 .content h1 {
  font-size: 150px;
}
.err-d-1-sec .err-d-1 .content h2 {
  font-size: 24px;
}
.err-d-1-sec .err-d-1 .content p {
  margin: 16px 0;
}
.err-d-1-sec .err-d-1 .content button {
  padding: 0.5em 1em;
  color: #fafafa;
  border: 2px solid #fafafa;
  border-radius: 8px;
  background: none;
  outline: none;
  transition: 0.3s ease;
  cursor: pointer;
  margin: 5px;
}
.err-d-1-sec .err-d-1 .content button:hover, .err-d-1-sec .err-d-1 .content button.fill {
  background-color: #fafafa;
  color: #000428;
}
.err-d-1-sec .err-d-1 .content button.fill:hover {
  background-color: #ccc;
  border-color: #ccc;
}
@media screen and (max-width: 500px) {
  .err-d-1-sec {
    padding: 16px;
  }
  .err-d-1-sec .err-d-1 .content h1 {
    font-size: 100px;
  }
  .err-d-1-sec .err-d-1 .content h2 {
    font-size: 20px;
  }
  .err-d-1-sec .err-d-1 .content p {
    font-size: 14.5px;
  }
  .err-d-1-sec .err-d-1 .content .btns {
    display: flex;
    flex-direction: column;
  }
}

@keyframes bg {
  0%, 100% {
    background-position: 0% 97%;
  }
  50% {
    background-position: 100% 4%;
  }
}/*# sourceMappingURL=errorDesign1.css.map */