html{
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding, 75px);
}

.card {
  transition: all 0.3s;
}
.card:hover {
  transform: scale(1.15);
}

/* GALLERY */
img{
  max-width: 100%;
  transition: all 0.3s;
}
.gallery img{
cursor: pointer;
/* border-radius: 2%;
border: 1px solid #ff8c00; */
}
.gallery img:hover{
  transform: scale(1.07);
}
#gallery-modal .modal-img{
  width: 100%;
}