File size: 1,121 Bytes
e584529
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
html {
    overscroll-behavior: none;
    touch-action: pan-y;
}

#jsi-cherry-container {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: transparent;
    overflow: hidden;
    opacity: 0.618;
    z-index: 99;
}

canvas {
    position: fixed;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
}

@keyframes heartbit {
    0% {
        transform: rotate(45deg) scale(0.5);
    }

    100% {
        transform: rotate(45deg) scale(1);
    }
}

.heart {
    width: 200px;
    height: 200px;
    background: #e74949;
    position: absolute;
    transform: rotate(45deg) scale(0.5);
    animation: heartbit 0.5s alternate infinite;
}

.heart::before {
    content: '';
    width: 200px;
    height: 100px;
    background: #e74949;
    position: absolute;
    left: 0;
    top: -99px;
    border-radius: 100px 100px 0 0;
}

.heart::after {
    content: '';
    width: 100px;
    height: 200px;
    background: #e74949;
    position: absolute;
    left: -99px;
    top: 0;
    border-radius: 100px 0 0 100px;
}