/* Custom global button hover-up effect */
.btn {
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover, .btn:focus {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px 0 rgba(254,1,3,0.18);
} 