-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout-us.css
103 lines (90 loc) · 1.41 KB
/
about-us.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
/* about-us.css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #42f0e4;
}
.container {
max-width: 1200px;
margin: 20px auto;
padding: 20px;
background-color: silver;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border: 10px solid white;
border-radius: 18px;
}
.about{
font-size: 30px;
margin-bottom: 30px;
}
h1 {
text-align: center;
margin-bottom: 20px;
}
.about-content {
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 20px;
}
.image-section {
flex: 1;
}
.image-section img {
width: 30vw;
height: 80vh;
border-radius: 8px;
}
.key-achivmnt{
padding: 20px;
margin-left: 100px;
}
.key-achivmnt ,
.p{
margin-left: 40px;
}
.text-section {
flex: 2;
margin-left: 100px;
margin-right: 60px;
}
.text-section h2 {
margin-top: 0;
}
.text-section p {
font-size: 16px;
color: #555;
}
h3 {
margin-top: 40px;
font-size: 22px;
color: #333;
}
ul {
list-style-type: disc;
margin-left: 20px;
}
li {
font-size: 16px;
color: #555;
}
.backbtn {
margin: 20px;
}
.backbtn a{
margin: 20px;
color: black;
border: 1px solid white;
border-radius: 8px;
padding: 10px;
}
.back-button {
text-decoration: none;
color: #007bff;
font-size: 18px;
}
.back-button:hover {
background-color: #fff;
}