/* Animation CSS */
html{
    scroll-behavior:smooth;
}

.hover-scale{
    transition:.3s;
}

.hover-scale:hover{
    transform:scale(1.05);
}

.card-hover{
    transition:.3s;
}

.card-hover:hover{
    transform:translateY(-10px);
}
/* We will add custom animations later. */