-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaboutus.css
233 lines (193 loc) · 3.82 KB
/
aboutus.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
/* Importing Google font - Open Sans */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Open Sans", sans-serif;
}
body {
height: 100vh;
width: 100%;
display: flex;
background-image: url(/Users/nisayurusandaneth/Downloads/Lec/1.png);
background-size: cover;
background-position: center;
flex-direction: column;
text-align: center;
}
.paragraph {
text-align: center;
margin-top: 280px;
margin-bottom: auto;
margin-left: auto;
margin-right: auto;
}
.paragraph p {
font-size: 48px;
font-weight: bold;
color: #2c3e50;
margin-bottom: 30px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
button {
display: inline-block;
margin: 10px;
padding: 15px 40px;
font-size: 20px;
font-weight: bold;
border: none;
border-radius: 50px;
cursor: pointer;
background-image: linear-gradient(45deg, #9cffae, #023601);
color: white;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
transition: transform 0.2s, box-shadow 0.2s;
}
button:hover {
transform: translateY(-3px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
/* Animation */
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
button.animate {
animation: pulse 1.5s infinite;
}
.header {
background-color: #01230e;
opacity: 0.8;
position: fixed;
top: 0;
left: 0;
width: 100%;
}
.navbar {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
padding: 20px 15px;
}
.navbar .logo a {
font-size: 1.8rem;
text-decoration: none;
color: #fff;
}
.navbar .links {
display: flex;
align-items: center;
list-style: none;
gap: 35px;
}
.navbar .links a {
font-weight: 500;
text-decoration: none;
color: #fff;
padding: 10px 0;
transition: 0.2s ease;
}
.navbar .links a:hover {
color: #63ff97;
}
/* Hamburger menu styles */
#menu-toggle {
display: none;
}
#hamburger-btn {
font-size: 1.8rem;
color: #fff;
cursor: pointer;
display: none;
order: 1;
}
@media screen and (max-width: 1023px) {
.navbar .logo a {
font-size: 1.5rem;
}
.links {
position: fixed;
left: -100%;
top: 75px;
width: 100%;
height: 100vh;
padding-top: 50px;
background: #175d69;
flex-direction: column;
transition: 0.3s ease;
}
.navbar #menu-toggle:checked ~ .links {
left: 0;
}
.navbar #hamburger-btn {
display: block;
}
.header .buttons {
display: none;
}
}
.footer {
position: fixed; /* Position the footer relative to the viewport */
bottom: 0; /* Align the footer to the bottom */
width: 100%; /* Ensure the footer spans the entire width */
background-color: #01230e;
color: #fff;
padding: 50px 0;
text-align: center;
opacity: 0.8;
}
.footer p {
margin: 0;
font-size: 14px;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.team {
margin: 0 auto; /* Center horizontally */
text-align: center;
padding-top: 120px; /* Adjust top padding to center vertically */
padding-bottom: 100px; /* Adjust bottom padding to center vertically */
}
.team h2 {
font-size: 30px;
margin-bottom: 20px;
}
.team-row {
margin-bottom: 20px;
}
.team-member {
display: inline-block;
background-color: rgba(240, 248, 255, 0.7); /* aliceblue with 80% opacity */
vertical-align: top;
margin: 0 20px;
margin-bottom: 100px;
border: 1px solid #ccc;
padding: 30px;
border-radius: 5px;
}
.team-member img {
width: 250px;
height: 250px;
border-radius: 1%;
margin-bottom: 10px;
}
.team-member h3 {
font-size: 18px;
margin-bottom: 5px;
}
.team-member p {
font-size: 14px;
color: #000000;
}