.page-404 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 40px 20px;
  background-color: #f8f4e9;
  text-align: center;
}

.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 500px;
  width: 100%;
}

.error-icon {
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}
.error-icon svg {
  height: 70px;
  width: 70px;
}

.page-404 h1 {
  font-size: 4rem;
  color: #5c3d1e;
  margin-bottom: 10px;
}

.page-404 p {
  font-size: 1.2rem;
  color: #2d1e0f;
  margin-bottom: 5px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
