/* PAGE-SPECIFIC STYLES FOR THE 404 PAGE */
/*-- -------------------------- -->
<---            404             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #error {
    padding: var(--sectionPadding);
  }
  #error .cs-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    max-width: 98%;
    width: 100%;
    padding-top: 6.25rem;
  }
  #error .cs-text {
    padding-bottom: 2rem;
    max-width: 43.625rem;
  }
  #error .cs-text a {
    font-weight: 700;
    color: var(--bodyTextColor);
  }
  #error .cs-text a:hover {
    color: var(--primary);
    /* Footer link hover text colour */
  }
}
/* Desktop - 360px */
@media only screen and (min-width: 48rem) {
  #error .cs-button {
    margin-left: 25.8%;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #error {
    background-color: var(--dark);
  }
  body.dark-mode #error .cs-title,
  body.dark-mode #error .cs-item-p,
  body.dark-mode #error .cs-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #error a {
    color: var(--bodyTextColorWhite);
    text-decoration: none;
  }
  body.dark-mode #error a:hover {
    color: var(--bodyTextColorWhite);
  }
}
