/**
 * ERROR ---------------------------------------------------------------------------------------------------------------
 */

#intro {
  width: 100%;
  height: 100%;
  display: table;
  position: absolute;
}

#intro .middle {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  z-index: 1000;
}

#intro .middle .error-panel {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  min-width: 320px;
  max-width: 600px;
  width: calc(100% - 40px);
  padding: 30px 30px 32px;
  margin-bottom: 5%;
  border-radius: var(--border-radius-lg);
  background-color: var(--bg-color-secondary);
}

.error .status-code {
  font-size: 100px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 10px;
}

.error h4 {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 20px;
}

.error p.description {
  margin-bottom: 25px;
  font-size: 14px;
}

.error a {
  color: #d0d0d0;
  font-size: 1rem;
}
