@media (min-width: 1025px) {
  .header {
    color: var(--white-colour);
  }
}
.not-found-error-page {
  box-sizing: border-box;
  height: 100vh;
  position: relative;
}
@media (min-width: 1025px) {
  .not-found-error-page {
    flex-direction: column;
    justify-content: center;
    display: flex;
  }
}
.not-found-error-page > picture {
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (min-width: 601px) {
  .not-found-error-page > picture {
    top: 4rem;
    bottom: 1.25rem;
    left: 1rem;
    right: 1rem;
  }
  .not-found-error-page > picture img {
    border-radius: var(--base-radius);
  }
}
@media (min-width: 1025px) {
  .not-found-error-page > picture {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .not-found-error-page > picture img {
    border-radius: 0;
  }
}
.not-found-error-page .error-page-content {
  color: var(--white-colour);
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  max-width: 23.75rem;
  margin-left: 1rem;
  margin-right: 1rem;
  display: flex;
  transform: translateY(7.875rem);
}
@media (min-width: 25.75rem) {
  .not-found-error-page .error-page-content {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1025px) {
  .not-found-error-page .error-page-content {
    text-align: left;
    align-items: start;
    gap: 1.25rem;
    max-width: 32.1875rem;
    margin-left: 7.5rem;
    transform: translateY(2.875rem);
  }
}
.not-found-error-page .error-page-content h1 {
  margin: 0;
  font-size: 8.75rem;
  font-weight: 600;
  line-height: 0.77;
}
@media (min-width: 601px) {
  .not-found-error-page .error-page-content h1 {
    font-size: 11.25rem;
  }
}
@media (min-width: 1025px) {
  .not-found-error-page .error-page-content h1 {
    font-size: 15.625rem;
    line-height: 0.56;
  }
}
.not-found-error-page .error-page-content p {
  margin-top: -25px;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 599px) {
  .not-found-error-page .error-page-content p {
    max-width: 291px;
  }
}
@media (min-width: 1025px) {
  .not-found-error-page .error-page-content p {
    margin-top: 0;
    font-size: 2.5rem;
    line-height: 1;
  }
}
.not-found-error-page .error-page-content .button {
  white-space: nowrap;
  padding: 0.875rem 1.1875rem;
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .not-found-error-page .error-page-content .button {
    padding: 1.3125rem 3.75rem;
    font-size: 1.25rem;
  }
}
