I'm designing an HTML game and I would like to know how I can constantly fade in and out the "START" button in the game with CSS.
.pulseButton {
animation: pulse 5s infinite;
}
@keyframes pulse {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}`