File size: 997 Bytes
45e21b8
 
 
 
 
 
 
 
 
 
 
 
915b555
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45e21b8
 
 
 
 
 
 
 
 
 
 
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
.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

body {
    padding: 0 10rem;
}

h1 {
    text-align: center;
}

#summaryForm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

#youtubeLinkInput {
    width: 60%;
    padding: 2%;
    border: 2px solid #aaa;
    border-radius: 26px;
    margin-bottom: 20px;
}

button {
    width: 30%;
    padding: 2%;
    outline: 0;
    border: 2px solid #aae;
    border-radius: 26px;
    color: white;
    margin-bottom: 20px;
    cursor: pointer;
    background-color: rgb(62, 120, 245);
}

#summaryResult {
    font-size: 2.5rem;
    margin: 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}