blob: 49d2484f768334103cab582008d00ac91f12583b (
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
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
|
/* ####################### */
/* */
/* texx */
/* by Marvin Borner */
/* & Marco Alexander Fischer */
/* */
/* ####################### */
* {
text-align: center;
background-color: #282828;
font-family: Comfortaa, serif;
}
html, body {
min-height: 100vh;
width: 100vw;
overflow: hidden;
}
.ContentWrapper {
display: flex;
min-height: 100vh;
width: 100vw;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.slide {
color: white;
}
.Main-Content {
margin: 0 86px;
color: white;
}
.Social {
font-size: 35px;
}
.ScrollDown {
position: relative;
cursor: pointer;
font-size: xx-large;
left: 50%;
bottom: 20px;
transform: translate(-50%, -50%);
margin: 0 auto;
}
.About {
margin: 0 86px;
}
.AboutBox {
padding: 5px;
margin: 5px;
}
a:visited {
color: white;
}
a {
color: white;
text-decoration: none;
transition: .5s;
}
a:hover {
color: #3E4DF0;
}
@media only screen and (max-width: 500px) {
#slide-numbers {
display: none;
}
}
|