blob: 9e774e6a8d482ed76caa8dcade56ccc9d1c6107b (
plain)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: #FBDEE3;
width: 900px;
margin: auto;
}
.header {
margin-top: 40px;
margin-bottom: 50px;
text-align: center;
font-size: 72px;
text-shadow: 2px 2px #ADADAD;
font-family: pacifico;
}
.header > a {
color: #222222;
}
.header > a:hover {
color: #222222;
}
#content {
margin-top: 120px;
background-color: white;
border-radius: 5px;
padding: 50px 80px 30px;
}
h1 {
font-size: 36px;
margin-bottom: 30px;
margin-left: 10px;
font-weight: bold;
color: #F52F8A;
}
h2 {
font-size: 26px;
margin-bottom: 30px;
margin-left: 10px;
color: #F52F8A;
font-weight: bold;
}
p {
margin-bottom: 30px;
text-indent: 30px;
line-height: 24px;
text-align: justify;
}
img {
border: 1px solid black;
display: block;
margin: auto;
margin-bottom: 30px;
}
ul {
margin-bottom: 30px;
}
li {
margin-left: 30px;
margin-bottom: 5px;
}
li:before {
content: "• ";
color: #F52F8A;
}
a {
text-decoration: none;
color: darkblue;
}
a:hover {
color: #4C4C80;
}
.contact {
background-color: #EEEEEE;
border-radius: 5px;
padding: 30px;
text-align: center;
color: #555555;
}
|