/* -*- coding: utf-8 -*-*/
/* :Project:   Sito Emilia --
/* :Created:   lun 18 mag 2020, 21:54:42*/
/* :Author:    Alberto Berti <alberto@metapensiero.it>*/
/* :License:   GNU General Public License version 3 or later
/* :Copyright: © 2020 Alberto Berti*/
/**/

#mani {
    background-size: cover;
    background-image: url(../images/mani-1.jpg);
    background-position: 50% 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    animation: imageAnimation 5s linear 1 0s;
    opacity: 0.3;
    transform: scale(1.1);
}

html body {
    background-color: rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

@keyframes imageAnimation {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.05);
    }
    100% { opacity: 0.3;
           animation-timing-function: ease-out;
           transform: scale(1.1);
    }
}
