-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
66 lines (59 loc) · 1.12 KB
/
index.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
54
55
56
57
58
59
60
61
62
63
64
65
66
html{
text-align: center;
background-color: black;
color: rgb(255, 255, 255);
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#rabbit{
width: 150px;
margin-top: 50px;
border-radius: 70px;
background-color: rgb(255, 255, 255);
animation: run 1.2s linear alternate-reverse;
}
@keyframes run {
to{
margin-right: 80%;
}
}
.title{
font-size: 5rem;
font-weight: 1000;
color: #ffee009c;
letter-spacing: 8px;
margin: 15px 0px 24px 0px;
text-shadow: 0 0 15px rgba(255, 255, 0, 0.747), 0 0 18px yellow;
}
hr{
width: 30%;
height: 3px;
border-radius: 3px;
margin-bottom: 50px;
background-color: white;
}
p{
font-size: 29px;
font-weight: 600;
}
.two{
color: #ffee00a4;
text-shadow: 0 0 15px yellow, 0 0 10px rgba(255, 255, 0, 0.719);
}
.hashtag{
font-size: 20px;
color: #37b5fe;
margin-bottom: 50px;
}
.btn{
width: 20rem;
height: 40px;
border-style: none;
border-radius: 15px;
background-color: #2c3946;
}
.btn a{
font-size: 23px;
color: yellow;
font-weight: 800;
text-decoration: none;
}