-
Notifications
You must be signed in to change notification settings - Fork 0
/
landing.css
69 lines (68 loc) · 1.15 KB
/
landing.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
67
68
69
* {
margin: 19px auto;
}
body{
background: #70697B;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
}
.container{
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
}
@keyframes colorChange{
0% {
color: #87C2A5;
}
20%{
color:#9CDBA1;
}
40% {
color:#C2F195;
}
60%{
color:#C2F195;
}
80%{
color: #9CDBA1;
}
100% {
color: #87C2A5;
}
}
.first{
font-family: 'Acme',sans-serif;
font-size: 40px;
color:#81A79E;
}
.second{
font-family: 'Acme',sans-serif;
font-size: 80px;
color:#81A79E;
}
.third{
font-family: 'Acme',sans-serif;
font-size: 40px;
color:#81A79E;
}
.fourth{
font-family: 'Acme',sans-serif;
font-size: 30px;
color:#81A79E;
}
.playGame{
height: 60%;
width: 100%;
font-size: 50px;
background-color:#81A79E;
color: #FFA186;
animation: colorChange 2s linear infinite
}
img{
height:200px;
width: 500px;
}