/* error 404 - jumbotron */

#not-found {
  background: var(--gradient-deep-blue);
  color: var(--white);
}

#not-found .content {
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

#not-found .content .message {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#not-found .content .message .subheading {
  font-size: 48px !important;
  line-height: 60px !important;
  font-weight: 500 !important;
}

@media (max-width: 800px) {
  #not-found .content .message .subheading {
    font-size: 32px !important;
    line-height: 50px !important;
  }

  #not-found .content .button {
    width: 100%;
  }
}
