-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathmain.css
More file actions
41 lines (34 loc) · 737 Bytes
/
main.css
File metadata and controls
41 lines (34 loc) · 737 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
/* background: linear-gradient(90deg,black, rgb(2, 2, 89),black); */
background: linear-gradient(90deg,rgb(5, 5, 54),black,rgb(5, 5, 54));
color: white;
font-family:Verdana, Geneva, Tahoma, sans-serif;
height: 100vh;
}
.welcome{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
h1{
text-align: center;
font-family: "Protest Revolution", sans-serif;
font-weight: 700;
font-style: normal;
font-size: 60px;
}
.first{
font-size: 90px;
color: rgb(94, 94, 236);
}
.second{
font-size: 95px;
color: rgba(0, 255, 255, 0.497);
animation: animation 2s;
}