/*btn animation*/
.dot-style{
   height : 1em ;
  width : 1em ;
  background :  green;
  border-radius : 100%;
  animation-name : beat;
  animation-duration : 2s;
  animation-iteration-count : infinite
}
@keyframes beat {
   0% {
    transform : scale(0)
  }
   
  100% {
    transform : scale(0.5)
  }
}
.dots-parent-style {
  width : max-content;
  display : flex ;
  justify-items : space-between 
}
.clicked-btn-style {
    opacity : 0.7 ;
    border : none ;
    background : none
}