File size: 1,186 Bytes
97531f4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
body {
    background-color: #171717;
    font-family: 'San Francisco', 'Helvetica Neue', sans-serif;
    color: rgb(43, 51, 49)
}

#column_container {
    max-width: 80%;
    margin: auto;
    background-color: #19273c80;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(108, 247, 242, 0.372);
    padding: 40px;
}

h1 {
    color: #58ffb1;
    text-align: center;
    font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
    font-size: 3em;
}

h2 {
    color: #ffffff;
    text-align: center;
    font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
    font-size: 2em;
}

p,
li {
    color: #ffffff;
    line-height: 1.6;
    font-family: 'Georgia', serif;

}

strong {
    color: #a3fdd3;
}

ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

li {
    padding-left: 20px;
    position: relative;
}

button {
    background-color: #2b0808;
    color: #ff0000;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1em;
    transition: background-color 0.3s ease;
    box-shadow: 0 1px 3px rgba(255, 94, 94, 0.753);

    button:hover {
        background-color: #55a369;
    }
}