/* =========================
   PAGE 404
========================= */

.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-404__inner {
  max-width: 600px;
  padding: 2rem;
}

.error-404__code {
  font-size: clamp(6rem, 20vw, 18rem);
  font-weight: var(--bold);
  margin: 0;
  line-height: 1;
}

.error-404__title {
  font-size: 1.8rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.error-404__text {
  opacity: 0.7;
  margin-bottom: 2rem;
}

.error-404__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.error-404__btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--text);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
 /*  transition: all 0.3s ease; */
}

.error-404__btn:hover {
  background: var(--text);
  color: var(--background);
}
