.error-state {
  width: 100vw;
  height: calc(100 * var(--window-inner-height));
  padding: 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.error-state .error-title {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}

.error-state .error-title h1 {
  color: rgba(var(--title-font-color));
  text-transform: uppercase;
  font-weight: 400;
  font-size: 4.2em;
  margin-block-start: 8px;
  margin-block-end: 8px;
  text-align: center;
  max-width: 100vw;
}

.error-state .error-title h3 {
  color: rgba(var(--title-font-color));
  text-transform: uppercase;
  font-weight: 300;
  font-size: 2.1em;
  margin-block-start: 8px;
  margin-block-end: 8px;
  text-align: center;
}

.error-state .error-description, .error-state .error-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex: 1;
  outline: none;
}

.error-state .error-description {
  flex-grow: 0;
}

.error-state .error-description summary {
  cursor: pointer;
  outline: none;
}

.error-state .error-actions {
  flex-direction: column;
  flex-wrap: wrap;
}