File size: 1,050 Bytes
f687c45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
html,
        body {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: 'Inter', sans-serif;
        }

        @keyframes wave {
            0%,100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        /* @keyframes wave {
            0%,100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        } */

        .dot-typing span {
            display: inline-block;
            animation: wave 1.4s infinite ease-in-out;
            font-size: 1.5rem;
            margin: 0 2px;
            color: black;
            /* Or white in dark mode */
        }

        .dot-typing span:nth-child(1) {
            animation-delay: 0s;
        }

        .dot-typing span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .dot-typing span:nth-child(3) {
            animation-delay: 0.4s;
        }