#homepage {
    background: linear-gradient(to bottom, olive 0%, white 100%);
    min-height: 100vh; /* Ensures the gradient covers the full viewport and beyond if the content overflows */
    margin: 0;
  }
  
  #homepage-articles h2 {
    font-weight: bold;
    color: #083b08;
  }

  .article-img-top {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  
  #articles-container .card {
    transition: transform 0.2s ease-in-out;
  }
  
  #articles-container .card:hover {
    transform: translateY(-5px);
  }
  
  .article-thumbnail {
    height: 100%;
    max-width: 150px;
    object-fit: cover;
    border-radius: 5px;
    padding: 5px;
    background: #f8f9fa;
  }
  
  .card {
    border-radius: 8px;
    transition: transform 0.2s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }

  .election-links h2 {
    color: #083b08;
    font-weight: bold;
  }
  
  .election-btn {
    font-size: 1.2rem;
    padding: 15px;
    border-width: 2px;
    transition: all 0.3s ease;
  }
  
  .election-btn:hover {
    background-color: #083b08;
    color: white;
    border-color: #083b08;
  }
  
  /* Footer Styling */
.footer {
  background-color: #f8f9fa; /* Match Bootstrap bg-body-tertiary */
  padding: 20px 0;
  border-top: 3px solid var(--bs-secondary); /* Subtle top border */
}

/* Footer text styling */
.footer-text {
  color: #6c757d; /* Muted text color */
  font-size: 14px;
}

/* Footer links */
.footer-links li {
  margin-bottom: 5px; /* Space between list items */
}

.footer-links a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
  color: var(--bs-primary);
}

/* Social Media Icons */
.footer-links i {
  font-size: 18px;
  margin-right: 8px; /* Space between icon and text */
}

/* Copyright */
.footer p {
  font-size: 14px;
  margin: 0;
}
