-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPro.css
More file actions
78 lines (68 loc) · 1.39 KB
/
Pro.css
File metadata and controls
78 lines (68 loc) · 1.39 KB
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
77
78
/* Reset some basic styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background: linear-gradient(to bottom, #141414, #1a1a1a);
color: white;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
text-align: center;
}
header {
width: 100%;
padding: 20px 0;
background-color: rgba(0, 0, 0, 0.8);
}
header .logo h1 {
font-size: 3rem;
letter-spacing: 5px;
text-transform: uppercase;
color: #f1f1f1;
}
main {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 30px;
}
.intro h2 {
font-size: 2.5rem;
margin-bottom: 10px;
}
.cta-button {
padding: 10px 20px;
font-size: 1.2rem;
text-decoration: none;
background-color: #ff4500;
color: white;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.cta-button:hover {
background-color: #ff2a00;
}
.video {
display: flex;
justify-content: center;
align-items: center;
margin-top: 30px;
position: relative;
}
.play-button {
font-size: 5rem;
color: #ff4500;
cursor: pointer;
transition: transform 0.3s ease;
}
.play-button:hover {
transform: scale(1.1);
}