/* PLACE YOU CUSTOM STYLES IN THIS FILE */


.disabled{
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: gray;
}

.inner-img {
    transition: 0.3s;
    
  }
  
  .inner-img:hover {
    transform: scale(1.2);
    background-color: red;
    border-radius: 50px;
  }
