-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
52 lines (48 loc) · 1004 Bytes
/
styles.css
File metadata and controls
52 lines (48 loc) · 1004 Bytes
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
@import url("https://cdn.jsdelivr.net/npm/@xz/fonts@1/serve/plus-jakarta-display.min.css");
body {
background: linear-gradient(-45deg, #6b9fff, #7797ff, #b473ff, #cc74ff);
background-size: 400% 400%;
animation: gradient 10s ease-in-out infinite;
height: 100vh;
overflow: hidden;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
h1 {
color: white;
text-align: center;
font-family: "Plus Jakarta Display", sans-serif;
font-size: 4em;
}
h2 {
font-family: "Plus Jakarta Display", sans-serif;
color: white;
text-align: center;
font-size: 1.5em;
margin-top: 10%;
}
h3 {
font-family: "Plus Jakarta Display", sans-serif;
color: white;
text-align: center;
font-size: 2em;
margin-top: 5%;
visibility: hidden;
}
h4 {
font-family: "Plus Jakarta Display", sans-serif;
color: rgba(255, 255, 255, 0.512);
text-align: center;
font-size: 1.5em;
/* margin-top: 10%; */
visibility: hidden;
}