img.enzoImage{
    animation-name: example;
    animation-duration: 2s;
}
.enzoHead{
    animation-name: example2;
    animation-duration: 3s;
    float: left;
    height: 20px;
    width: 20px;
    box-shadow: inset 0 30px 20px #ff0000;
}
@keyframes example2 {
    0%   { box-shadow: none ;width: 95%;}
    100% { box-shadow: inset 0 30px 20px #ff0000;     width: 20px;}
}
@keyframes example {
    0%   { width: 0}
    100% { width: 90%}
}
