/* 404 Main Styling */

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#error {
  justify-content: center;
  align-items: center;
  display: flex;
  background-color: #eceeef;
  height: 450px;
  flex: 1 0 auto;
}

#error-wrapper {
  margin: 36px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

#error-div {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#error-div p {
  margin-top: 8px;
  margin-bottom: 8px;
}

#error-div a {
  color: #2167ae;
}

/* Mobile (315px < x ≤ 767px) */
@media (max-width: 767px) {
  #error {
    height: auto;
  }

  #error-wrapper {
    width: 100%;
  }
}

/* Portrait (768px < x ≤ 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  #error-wrapper {
    width: 690px;
  }
}

/* Landscape (992px < x ≤ 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  #error-wrapper {
    width: 930px;
  }
}

/* Desktop (≥ 1200px) */
@media (min-width: 1200px) {
  #error-wrapper {
    width: 1110px;
  }
}