/* style.css */

/* Animazione per l'entrata della pagina */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in-down {
    animation: fadeInDown 1s ease-out;
}

/* Effetto di sottolineatura sui link */
.underline-effect {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.underline-effect::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 100%;
    background-color: #3b82f6;
    transition: width 0.3s ease-out;
}

.underline-effect:hover::after {
    width: 100%;
    left: 0;
}