-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcollaborationSection.css
More file actions
42 lines (38 loc) · 1006 Bytes
/
Copy pathcollaborationSection.css
File metadata and controls
42 lines (38 loc) · 1006 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
/* Section to connect with people */
.collaborationSection {
background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
padding: 70px 20px;
text-align: center;
color: #fefefe;
box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}
.collaborationSection h2 {
color: #facc15;
font-size: 40px;
text-shadow: 0 0 15px gold;
margin-bottom: 20px;
}
.collaborationIntro {
color: #cbd5e1;
font-size: 18px;
max-width: 800px;
margin: 0 auto 40px;
line-height: 1.6;
}
.collaborationBtn {
background: gold;
color: black;
border: none;
border-radius: 12px;
padding: 15px 30px;
font-size: 18px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 0 20px rgba(250, 204, 21, 0.4);
}
.collaborationBtn:hover {
background: #ffe55c;
transform: scale(1.05);
box-shadow: 0 0 30px rgba(250, 204, 21, 0.6);
}