File size: 957 Bytes
ee75ea1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cfecc3f
ee75ea1
 
 
 
 
 
 
 
 
 
 
 
b2f875c
 
ee75ea1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
html,
body {
    background-image: url('background.png');
    background-size: cover;
    margin: 0;
    overflow: hidden;
    color: #FFFFFF;
}

div.aiResponseBox {
    position: absolute;
    top: 10%;
    width: 70%;
    right: 20%;
}

div.response {
    position: absolute;
    bottom: 0%;
    width: 80%;
    margin-left: 2%;
    margin-right: 10%;
}

div {
    text-align: center;
}

.ai-response {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.4em;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.5);
}

#userComment {
    text-align: center;
    font-size: 24px;
    margin: 2rem;
}

#typewriter::after {
    content: "|";
    animation-name: blink;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

#vtuber {
    position: absolute;
    bottom: -3%;
    right: 15%;
    width: 100%;
    text-align: right;
}

@keyframes blink {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}