/* General Dark Background */
body {
    background-color: #e3d7c6;
    color: #333333;
  }
  

  /* Footer Styling */
  .footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #587b7f;
    color: #e0e0e0;
    padding: 0.3rem 0;
    text-align: center;
    transition: transform 0.3s ease;
    transform: translateY(100%);  /*initially hidden */
  }
  .footer.visible {
    transform: translateY(0); /* visible when scrolled to bottom */
  }
  .footer .nav-link {
    color: #e0e0e0;
  }
  .footer .nav-link:hover {
    color: #007bff;
  }
  
  /* Additional Styles for Cards */
  .card {
    background-color: #587b7f00;
    color: #e0e0e0;
  }
  .card-body {
    background-color: #587b7faf;
  }
  
  /* Links Styling */
  a {
    color: #0056b3;
  }
  a:hover {
    color: #003d7e;
    text-decoration: underline;
  }
  
  /* Headings */
  h1 {
    color: #244142;
    margin-bottom: 1rem;
  }
  