-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (66 loc) · 1.32 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
* {
box-sizing: border-box;
font-family: Poppins;
}
video {
width: 50%;
height: auto;
display: block;
border-radius: 30px;
margin: 20px auto;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
transition: all 0.6s ease;
}
video:hover {
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
transform: scale(1.05);
}
.about {
margin: 20px auto;
width: 50%;
text-align: center;
}
.about h1 {
font-size: 2.5rem;
margin-bottom: 20px;
font-weight: 2000;
letter-spacing: 0.2px;
transition: all 0.6s ease;
}
.about h1:hover {
letter-spacing: 4px;
}
.about p {
font-size: 1.2rem;
margin-bottom: 20px;
font-weight: 2000;
transition: all 0.6s ease;
}
@media (max-width: 768px) {
video {
width: 95%;
height: auto;
display: block;
border-radius: 30px;
margin: 20px auto;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
transition: all 0.6s ease;
}
.about {
margin: 0px auto;
width: 100%;
text-align: center;
}
.about h1 {
font-size: 1.5rem;
margin-bottom: 20px;
font-weight: 2000;
transition: all 0.6s ease;
}
.about p {
font-size: 0.9rem;
margin-bottom: 20px;
font-weight: 2000;
transition: all 0.6s ease;
}
}