/* Base styles */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Error Container */
.error-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  width: 100%;
  max-width: 600px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* Error Content */
.error-content h1 {
  font-size: 3rem;
  color: #e74c3c;
  margin: 0 0 10px;
}

.error-content .error-message {
  font-size: 1.2rem;
  margin: 10px 0 20px;
  color: #555;
}

/* Button Styles */
.home-button {
  text-decoration: none;
  background-color: #3498db;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.home-button:hover {
  background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .error-content h1 {
    font-size: 2.5rem;
  }

  .error-content .error-message {
    font-size: 1rem;
  }

  .home-button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .error-content h1 {
    font-size: 2rem;
  }

  .error-content .error-message {
    font-size: 0.9rem;
  }

  .home-button {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}
