body {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Rubik', sans-serif;
  color: hsl(213, 22%, 20%);
}

.inner {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 4px solid rgb(90, 100, 109);
  width: 100vw;
}

.inner .mobile-logo {
  display: none;
}

.inner .error-img {
  min-height: 330px;
  max-height: 450px;
  height: 60vh;
  margin-bottom: -4px;
}

.inner .text-column {
  display: flex;
  flex-direction: column;
  margin-left: 4rem;
  max-width: 450px;
}

.text-column .logo {
  width: 8rem;
  height: auto;
}

.text-column p.status-code {
  font-size: 2rem;
  font-weight: 700;
  margin: 3vh 0;
}

.text-column .status-code span {
  font-size: 5rem;
}

.text-column p {
  font-size: 1rem;
  font-weight: 300;
}

@media (max-width: 767px) {
  .inner {
    flex-direction: column;
    border-bottom: none;
  }

  .inner .mobile-logo {
    display: block;
    width: 8rem;
    margin-bottom: 3vh;
  }

  .inner .error-img {
    min-height: 180px;
    max-height: 250px;
    height: 30vh;
    margin-bottom: -4px;
    border-bottom: 2px solid rgb(90, 100, 109);
  }

  .inner .text-column {
    margin-left: 0;
    text-align: center;
    justify-content: center;
  }

  .text-column p.status-code {
    margin: 3vh 0 1vh;
  }

  .text-column .logo {
    display: none;
  }
}
