body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #ff6f61, #debbf7);
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
}

.error-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.error-code {
  font-size: 120px;
  margin: 0;
  color: #ff6f61;
}

.error-message {
  font-size: 24px;
  margin: 10px 0;
}

.error-description {
  font-size: 16px;
  color: #555;
}

.home-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #EB8546;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.home-button:hover {
  background-color: #c46c36;
}
