@keyframes dot {
0%, 100% {
    transform: scale(0.8);
    opacity: 0.6;
}
50% {
    transform: scale(1.2);
    opacity: 1;
}
}