-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.css
131 lines (112 loc) · 2.46 KB
/
about.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
body {
font-family: "Poppins", Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #121212;
color: #f4f4f4;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
h1 {
text-align: center;
font-size: 3rem;
color: #ffffff;
margin-bottom: 30px;
text-transform: uppercase;
letter-spacing: 2px;
}
.about-section {
text-align: center;
margin-bottom: 40px;
}
.about-section p {
font-size: 1.2rem;
line-height: 1.8;
color: #bbbbbb;
max-width: 800px;
margin: 0 auto;
}
.team {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 40px;
}
.team-member {
background-color: #1e1e1e;
border-radius: 15px;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
text-align: center;
width: 320px;
padding: 20px 15px;
transition: transform 0.4s, box-shadow 0.4s;
overflow: hidden;
}
.team-member:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}
.team-member .image-container {
width: 150px;
height: 150px;
margin: 0 auto 15px;
border-radius: 50%;
overflow: hidden;
position: relative;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member:hover .image-container {
transform: scale(1.1);
box-shadow: 0 0 20px rgba(80, 250, 123, 0.7);
}
.team-member img {
width: 100%;
height: 100%;
object-fit: cover;
}
.team-member h3 {
margin: 15px 0 5px;
color: #ffffff;
font-size: 1.5rem;
}
.team-member p {
font-size: 1rem;
color: #cccccc;
line-height: 1.5;
}
.team-member p::before {
content: "★ ";
color: #50fa7b;
}
/* Footer styling for a complete look */
footer {
text-align: center;
padding: 20px 0;
margin-top: 40px;
background-color: #181818;
color: #888888;
font-size: 0.9rem;
}
footer a {
color: #f4f4f4;
text-decoration: none;
}
footer a:hover {
color: #50fa7b;
}
@media (max-width: 768px) {
.team-member {
width: 100%;
}
h1 {
font-size: 2.5rem;
}
.about-section p {
font-size: 1rem;
}
}