-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
53 lines (48 loc) · 1022 Bytes
/
styles.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
53
@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Righteous&display=swap");
html,
body {
font-family: "Inter", sans-serif;
background-color: black;
color: white;
}
.container {
margin: 10vh;
top: 50%;
display: flex;
flex-direction: column;
text-align: center;
}
.name {
font-family: "Righteous", cursive;
font-size: 20rem;
background: linear-gradient(
45deg,
#f17c58,
#e94584,
#24aadb,
#27dbb1,
#ffdc18,
#ff3706
);
background-size: 600% 100%;
animation: gradient 16s linear infinite;
animation-direction: alternate;
background-clip: text;
-webkit-background-clip: text;
color: transparent;
}
.tag {
font-size: 1.3rem;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}