.error-404 {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.error-404 h1 {
  font-size: 96px;
  line-height: 130px;
  /* 135.417% */
  color: var(--brand-primary);
  text-align: center;
}
.error-404 p {
  color: var(--brand-primary);
  font-weight: 700;
}
.error-404 > div {
  display: grid;
  grid-template-areas: ". button text";
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  justify-items: center;
  align-items: center;
}
.error-404 > div button {
  width: fit-content;
  padding: 15px 70px;
  background-color: var(--brand-primary);
  color: var(--light-grey-color);
  text-decoration: none;
  border-radius: var(--radius-md);
  margin: 5px;
  grid-area: button;
}
.error-404 > div > div {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  width: 195px;
  grid-area: text;
}
.error-404 > div > div img {
  transform: rotate(356deg);
  flex-shrink: 0;
  margin-bottom: 10px;
}
@media (max-width: 1000px) {
  .error-404 > div {
    justify-content: center;
  }
  .error-404 > div > div {
    display: none;
  }
}

/*# sourceMappingURL=error.css.map */
