.wrapper{
width: 100%;
background: #fff;
border-radius: 5px;
animation: blink 1s infinite alternate;
}
@keyframes blink {
100% {
box-shadow: 0 0 10px rgb(0, 195, 255), 0 0 10px rgb(211, 243, 31), 0 0 20px rgb(230, 30, 30), 0 0 40px #346974,
0 0 70px #7eff05, 0 0 80px #d408a1;
}
}