Can anyone provide a solution to my issue? I'm a CSS beginner and need some help. My landing page has a background Youtube video with buttons that appear after 8 seconds. I want these buttons to smoothly fade in, but I can't figure out how to do it. The current CSS snippet I have is as follows:
.cover .btn-lg {
animation: cssAnimation 0s 8s forwards;
visibility: hidden;
padding: 15px 50px;
font-weight: bold;
}
@keyframes cssAnimation {
to { visibility: visible; }
}
What changes should I make to achieve the desired effect of smooth fading rather than instant appearance?