.error {
  width: 100%;
  height: auto;
  min-height: calc(100vh - 120px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

}

.error svg {
  width: 50%;
  max-width: 400px;
  aspect-ratio: 1/1;
}

.error span {
  width: 80%;
  font-size: 4rem;
  z-index: 5;
  font-weight: 700;
  position: absolute;
  font-family: monospace;
  text-align: center;
}


@media(max-width:991px) {
  .error {
    max-height: calc(100vh - 100px);
  }

  .error span {
    width: 90%;
    font-size: 3rem;
  }
}

@media(max-width:700px) {
  .error {
    max-height: 100vh;
  }

  .error span {
    font-size: 2rem;
  }
}