html {
    scroll-behavior: smooth;
    scroll-behavior: 10rem;
}


.anim-hover-scale-1-1 {
    transition: transform 0.3s ease-in-out; /* Smooth transition */
    display: inline-block;
}

.anim-hover-scale-1-1:hover {
    transform: scale(1.1); /* Scale to 110% on hover */
}

