body.error-page {
  align-items: center;
  background-color: #efefef;
  display: flex;
  justify-content: center;

  & section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 90%;
    height: 20dvh;
    width: 100%;

    @media only screen and (width >= 500px) {
      height: 50dvh;
    }

    & h1 {
      border-bottom: 1px solid #bbb;
      font-size: 2rem;
      font-weight: 100;
      padding-bottom: 1rem;

      @media only screen and (width >= 500px) {
        font-size: 5rem;
      }
    }

    & p {
      font-size: 1.375rem;
      text-align: right;

      @media only screen and (width >= 500px) {
        align-self: flex-end;
        font-size: 2rem;
      }

      @media only screen and (width >= 1000px) {
        max-width: 50%;
      }
    }
  }

  & > div {
    bottom: 0%;
    font-size: 10rem;
    font-weight: 900;
    left: 5%;
    line-height: 1;
    opacity: 0.03;
    position: fixed;
    z-index: -1;

    @media only screen and (width >= 900px) {
      font-size: 30rem;
    }
  }
}