-
-
Notifications
You must be signed in to change notification settings - Fork 570
/
Copy pathstyle.css
57 lines (48 loc) · 762 Bytes
/
style.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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
* {
box-sizing: border-box;
}
body {
font-family: "Poppins", sans-serif;
background-color: #bcf5f7;
display: grid;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
padding: 1rem 0;
height: 100vh;
}
h1,
h2 {
font-size: 2rem;
margin: 0;
}
p {
font-size: 1rem;
margin: 0;
}
section {
text-align: center;
margin-top: 8rem;
padding: 8rem 0;
}
svg {
position: absolute;
bottom: 0;
left: 0;
z-index: -1;
overflow: visible;
}
#Clouds {
animation: cloud-anim 15s alternate-reverse infinite linear;
}
@keyframes cloud-anim {
from {
transform: translateX(0);
}
to {
transform: translateX(-100px);
}
}