.error-page,
.error-page body,
.error-page main {
  flex-grow: 1;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.error-page main {
  justify-content: center;
  background-color: #080808;
  background-image: url(/noise.png),
    linear-gradient(
      90deg,
      #080808 10%,
      #0e0e0e 35%,
      #101010 50%,
      #0e0e0e 65%,
      #080808 90%
    );
  background-position: center;
}

.error-page .error-info-wrapper {
  padding: 20px;
}

.error-page H1 {
  height: 200px;
  font-size: 150px;
  font-weight: 900;
  line-height: 200px;
  background-color: #552299;
  background-image: linear-gradient(180deg, #2d0266 20%, #8e4de7 80%);
  background-size: 100%;
  text-shadow:
    -1px -1px 0px rgba(85, 34, 153, 0.4),
    1px 1px 0px rgba(156, 106, 221, 0.3);
  -webkit-text-stroke: 1px rgba(159, 68, 239, 0.6);
  text-stroke: 1px rgba(159, 68, 239, 0.6);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.error-page h2 {
  font-size: 28px;
  line-height: 36px;
}

.error-page p {
  font-size: 16px;
  line-height: 36px;
  color: #919196;
}

.error-page .go-back-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 24px;
}

.error-page .go-back {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  padding: 15px 60px;
  margin: 0 auto;
}

@media screen and (max-width: 1240px) {
  .error-page main {
    justify-content: space-between;
  }
}

@media screen and (max-width: 980px) {
  .error-page H1 {
    height: 150px;
    font-size: 100px;
    line-height: 150px;
  }

  .error-page h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .error-page p {
    font-size: 14px;
    line-height: 20px;
  }

  .error-page .go-back {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }
}
