I am animating an asset in after a CSS delay but once the asset has faded in, it disappears. I initially am setting visibility to hidden and it seems that that is where it rests after the animation. How can I keep the asset from disappearing oncer the animation stops?
#asset {
    position:absolute;
    left:649px;
    top:215px;
    visibility: hidden;
    animation: assetAnim 2s 1;
    animation-delay: 1s;
}
@-webkit-keyframes assetAnim {
    0% { opacity: 0.0; visibility: visible;}
    100% { opacity: 1.0; visibility: visible;}
}
 
    