.error-page {
  height: calc(100vh - 10em);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error__txt {
  font-size: 32px;
}

.redirect__txt {
  display: block;
  margin-top: 32px;
  color: #0000ff;
  text-decoration: blue underline;
  font-size: 20px;
}

@media screen and (max-width: 1750px) {
  .error-page {
    height: calc(100vh - 20.7em);
  }
}

@media screen and (max-width: 1270px) {
  .error-page {
    height: calc(100vh - 20.1em);
  }
}

@media screen and (max-width: 767px) {
  .error-page {
    height: calc(100vh - 27em);
  }
}
