<style type="text/css">
.glow{
background:black;
text-shadow: 0 0 5px #FFFFA0, 0 0 10px #FFFF4D, 0 0 15px #FFFF41, 0 0 20px #FFFF2A, 0 0 25px #FFFF2B, 0 0 30px #FEFE00, 0 0 35px #F7F700;
}
#grad1 {
    height: 30px;
    width:700px;
    background-color: #1fc8db; /* For browsers that do not support gradients */        
    background-image: linear-gradient(140deg, #EADEDB 0%, #BC70A4 50%, #BFD641 75%);
    color:white;
    opacity:0.95;
}

#grad2 {
    height: 30px;
    width:970px;
    background-color: red; /* For browsers that do not support gradients */
    background-image: linear-gradient(#999999,white);
}
#grad3
           {
  color: white;
  text-shadow: 1px 1px 2px black, 0 0 10px green, 0 0 5px darkgrey;
}
#grad4 {
    height: 35px;
    width:970px;
    background-color: red; /* For browsers that do not support gradients */
    background-image: linear-gradient(white,#476b6b);
}

#grad5 {
  width:100%;
  max-width:700px;
  height:40px;                /* 🔥 이게 핵심 */
  margin:10px auto;
  background-image: linear-gradient(white,#476b6b);
}
</style>


<style>
.hovergallery img {
  transition: all 0.4s ease;
}

.hovergallery img:hover {
  transform: scale(1.05);      /* 확대 */
  opacity: 0.8;                /* 살짝 투명 */
  cursor: pointer;
}
</style>