blob: 45fcd43913a17a6152280d0ccef9e23ed447eb41 (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
/* ####################### */
/* */
/* 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;
}
.paginate {
transition: background-color 1s ease;
}
.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;
}
.Social img {
border-radius: 100%;
width: 35px;
height: 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;
}
}
.fa-instagram:before {
background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
|