File size: 673 Bytes
b963164
 
4e85ec7
b963164
 
 
 
 
 
 
 
 
4e85ec7
 
 
b963164
 
 
 
 
 
 
4e85ec7
 
b963164
 
 
 
 
 
 
4e85ec7
 
b963164
 
 
4e85ec7
 
b963164
 
 
 
4e85ec7
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
/* CSS Document */

body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1 {
    text-align: center;
    color: #E6E6E6;
    margin-bottom: 20px;
}

p, li {
    line-height: 1.6;
}

.container {
    max-width: 800px;
    padding: 20px;
    background-color: #333333;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    margin: 20px;
}

a {
    color: #3DBB3D;
    text-decoration: none;
}

@media screen and (max-width: 800px) {
    .container {
        width: 90%;
    }
}