blob: 34c4c15d23154f00ad99e19c4daeafeea3386c71 (
plain) (
blame)
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
|
/* #################### */
/* */
/* BEAM-Messenger */
/* by Marvin Borner */
/* */
/* #################### */
/* This landing page has been Made by Marco Alexander Fischer. */
/* visit marcoalexanderfischer.de for more! */
/* ############################################################################################ */
body, * {
text-align: center;
background-color: #282828;
font-family: Comfortaa;
}
body {
margin-top: 10rem;
}
.Main-Content {
color: white;
}
.Social {
font-size: 35px;
}
a:visited {
color: white;
}
a {
color: white;
transition: .5s;
}
a:hover {
color: #1457c6;
}
|