/* error.css — styles for the error page */

& {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 2rem;
}

.error-code {
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 900;
  margin: 0;
  line-height: 1;
}

.error-message {
  font-size: 1.25rem;
  margin: 1rem 0 2rem;
  color: #666;
}
