 /* 
 * CSS: Web
 * @desc: This file contains contains code for web page
 */

/* Imports */
@import 'vars.1.1.css';

@media screen and (min-width: 768px) {
  
  .jcdle-web__project__prev {

    background-color: var(--soft-black);

    /* Add existing styles of the element here */
    transition: transform 0.4s ease-in-out!important;

  }

  .jcdle-web__project__prev:hover {
    /* Apply the scale effect on hover */
    transform: scale(1.05);
  }
}
