@charset "utf-8";
/* CSS Document */

.card-glow {
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(0,0,0,.125);
  background-color: #fff;
}

.card-glow:hover {
  box-shadow: 0 0 20px 5px rgba(255, 165, 0, 0.4); 
  border-color: rgba(255, 165, 0, 0.6);
  transform: translateY(-5px);
}