/*!
 * Custom rulesets
 */
div .img-credit {
    display: inline-block;
    font-size: 80%;
}
 
.home-pg-button:link, .home-pg-button:visited {
  background-color: white;
  color: black;
  border: 2px solid gray;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.home-pg-button:hover, .home-pg-button:active {
  background-color: gray;
  color: white;
}

.project-img-caption {
  font-size: 80%;
  font-style: italic;
  color:#777
}

.sticky-section {
  position: sticky;
  top: 0;
}

/* Disable sticky behavior on mobile to prevent overlap */
@media (max-width: 974px) {
  .sticky-section {
    position: static !important;
  }
}