#make image glow 

#glow-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 150, 255, 0.4);
  border: 2px solid rgba(0, 150, 255, 0.3);
  transition: all 0.4s ease-in-out;
}

#glow-image:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.8);
  border-color: rgba(0, 200, 255, 0.7);
}
