
  .error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50dvh;
    text-align: center;
    color: #333;
  }

  .error-code {
    font-size: 120px;
    font-weight: bold;
    color: #ff6b6b;
    margin: 0;
  }

  .error-message {
    font-size: 20px;
    margin: 10px 0 30px;
  }

  .home-button {
    text-decoration: none;
    padding: 12px 24px;
    background-color: #007bff;
    color: white;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }

  .home-button:hover {
    background-color: #0056b3;
  }

