-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPPF.css
More file actions
49 lines (43 loc) · 693 Bytes
/
PPF.css
File metadata and controls
49 lines (43 loc) · 693 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
41
42
43
44
45
46
47
48
49
body {
background-color: #191f36;
color: #fff;
}
h1, h2, h4, p {
animation: fadeInUp 1s ease;
}
img {
animation: zoomIn 1s ease;
height: auto;
max-width: 100%;
border-radius: 20px;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale(0.8);
}
to {
opacity: 1;
transform: scale(1);
}
}
h1 {
text-align: center;
margin-bottom: 50px;
}
video {
margin-top: 50px;
display: block;
margin-left: auto;
margin-right: auto;
}