*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
display:flex;
justify-content:center;
align-items:center;
height:100vh;
width:100%;
background-color: #262626FF;
}

div{
display: flex;
justify-content:space-around;
align-items:center;
flex-direction:column;
height:300px;
width:250px;
margin:50px;
color:white;
font-size:14px;
background-color: transparent;
font-family:sans-serif;
border:1px  solid  transparent;
border-radius:20px;
paddding:5px;
text-align:center;
cursor: pointer;
box-shadow:1px 1px 20px #14EACFFF,
                    1px 1px 40px #14EACFFF;
animation:anime 1s linear infinite;
}

div: nth-child(1){
       animation-delay:0.2s;
}
div: nth-child(2){
       animation-delay:0.4s;
}

@keyframes anime{
	0%{
	filter: hue-rotate(0deg);
}
	100%{
	filter: hue-rotate(360deg);
}
}