
.icon-facebook{
    width:40px;
    height:40px;
    transition: transform 0.3s ease-in;
}

.icon-facebook:hover{
    content: url("imagess/facebook-colori.png");
    transform: scale(1.2);
}
.icon-linkedin{
    width:40px;
    height:40px;
    transition: transform 0.3s ease-in;
}
.icon-linkedin:hover{
    content: url("imagess/linkedin_colori.png");
    transform: scale(1.2);
}
.icon-insta{
    width:40px;
    height:40px;
    transition: transform 0.3s ease-in;
}
.icon-insta:hover{
    content: url("imagess/instagram-colori.png");
    transform: scale(1.2);
}
.icon-pint{
    width:40px;
    height:40px;
    transition: transform 0.5s ease-in;
}
.icon-pint:hover{
    content: url("imagess/pinterest-colori.png");
    transform: scale(1.2);
}
.icon-x{
    width:40px;
    height:40px;
    transition: transform 0.3s ease-in;
}
.icon-x:hover{
    content: url("imagess/twitter-colori.png");
    transform: scale(1.2);
}

.img-emacat{
    width: 105px;
    height: 70px;
    margin-top: 0px;
    transition: transform 0.3s ease-in;
}

.img-emacat:hover{
    transform: scale(1.2);
}
.page-content{
    opacity: 0;
    transform: scale(0.5);
    animation: zoomIn 0.6s ease-out forwards;
}
@keyframes zoomIn{
    100%{
        transform: scale(1);
        opacity: 1;
    }
}
