-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaboutus.css
More file actions
122 lines (103 loc) · 1.88 KB
/
aboutus.css
File metadata and controls
122 lines (103 loc) · 1.88 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
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
body {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
color: white;
background: url('./dragonabourus.jpg') no-repeat center center fixed;
background-size: cover;
}
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.header {
text-align: center;
padding: 30px 20px;
}
.header h1 {
font-family: 'Cinzel', serif;
font-size: 4.8rem;
color: yellow;
}
.header {
font-size: 1.2rem;
color: orange;
margin-top: 15px;
}
.team-section {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin: 40px 20px;
}
.team-member {
background: rgba(0, 0, 0, 0.8);
border-radius: 10px;
padding: 20px;
margin: 25px;
margin-top:80px;
width: 280px;
text-align: center;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
border:1px solid;
}
.team-member img {
border-radius: 10%; */
width: 100%;
height: 200px;
margin-bottom: 20px;
border: 3px solid #ffc107;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
}
.team-member h3 {
font-family: 'Cinzel', serif;
font-size: 1.4rem;
color: #ffc107;
}
.team-member p {
font-size: 0.9rem;
color: #ddd;
}
.team-member .role {
font-size: 1rem;
color: #ff9800;
margin-top: 10px;
font-style: italic;
}
footer {
text-align: center;
padding: 2rem 1rem;
color: #fff;
margin-top: 2rem;
background: rgba(0, 0, 0, 0.6);
border-top: 2px solid #f39c12;
}
footer p {
font-size: 1rem;
color: #ccc;
}
.achievements-container {
display: flex;
justify-content: space-around;
align-items: center;
gap: 20px;
}
.achievement {
text-align: center;
}
.achievement img {
display: block;
margin: 0 auto;
border-radius: 8px;
}
.achievement p {
margin-top: 8px;
font-size: 14px;
color: white;
font-weight: bold;
}