-
Notifications
You must be signed in to change notification settings - Fork 0
/
About.css
80 lines (79 loc) · 1.53 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #a8e1a58d;
color: #fff;
padding: 20px 0;
text-align: center;
}
nav {
background-color: #fff;
border-bottom: 1px solid #ccc;
padding: 10px 0;
text-align: center;
}
nav a {
color: #333;
text-decoration: none;
padding: 10px 20px;
transition: color 0.3s;
}
nav a:hover {
color: #2874f0;
}
.container {
max-width: 1200px;
margin: 20px auto;
padding: 20px;
height:90%;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
}
p {
text-align: justify;
line-height: 1.6;
}
.team {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 30px;
}
.team-member {
text-align: center;
padding: 20px;
background-color: #f9f9f9;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.team-member img {
border-radius: 50%;
width: 100px;
height: 100px;
object-fit: cover;
margin-bottom: 10px;
border: 4px solid #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.team-member h3 {
margin: 10px 0;
color: #333;
}
footer {
text-align: center;
margin-top: 20px;
padding: 10px;
background-color: #2874f0;
color: #fff;
border-radius: 8px;
}