-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (46 loc) · 969 Bytes
/
style.css
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
body {
background-color: #000000;
font-family: Arial, Helvetica, sans-serif;
height: 100vh;
z-index: -999;
overflow: hidden;
}
#backdrop {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
backdrop-filter: blur(3px);
z-index: 1;
color: #FFFFFF;
}
#text {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
h1 {
background-color: #FFFFFF;
font-size: 12rem;
margin: 0;
padding: 0;
background: linear-gradient(90deg, #f8ff00 0%, #3ad59f 100%);
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
}
p {
font-size: 2rem;
margin: 0;
padding: 0;
}
a {
color: #FFFFFF;
text-decoration: underline;
}
a:visited {
color: rgb(104, 104, 104)
}