-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
161 lines (140 loc) · 3.01 KB
/
style.css
File metadata and controls
161 lines (140 loc) · 3.01 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
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
Dbody {
font-family: 'OPen Sans', Arial;
sans-serif;
background-color: #f9f9f9;
color: #222324
}
header {
text-align: center;
padding: 30px 10px 10px;
background: #fff;
}
.logo {
width: 80px;
border-radius: 15px;
margin-bottom: 10px;
}
.tagline {
color: #ffcc00;
font-size: 1.1em;
margin: 5px 0 15px;
font-weight: bold;
}
nav {
display: flex;
justify-content: center;
gap: 2em;
background: #fff;
box-shadow: 0 2px 10px rgba(53,107,243,0.06);
padding: 16px 0;
border-radius: 6px;
margin-bottom: 24px;
}
nav a {
color: #356bf3;
text-transform: uppercase;
font-family: 'Montserrat', Arial, sans-serif;
font-weight: bold;
padding: 7px 1em;
letter-spacing: 0.08em;
font-size: 1.07em;
border-radius: 5px;
transition: background 0.2s, color 0.2s;
text-decoration: none;
}
nav a:hover {
background: #f7b500;
color: #fff;
}
button, .accent{
background: #f7b500
color: #fff;
border: none;
font-family: 'Montserrat', Arial,
sans-serif;
padding: 8px 16px;
border-redius: 4px;
cersor: pointer;
}
section {
max-width: 800px;
margin: 30px auto 20px;
background-color: #fff;
padding: 25px 30px;
border-radius: 14px;
box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
h1, h2 {
font-family:'Montserrat', Arial,
sans-serif;
color: #356bf3;
}
.service-list {
list-style: none;
padding-left: 0;
}
.service-list li {
padding: 8px 0;
font-size: 1.07em;
}
.team-section {
max-width: 900px;
margin: 60px auto;
padding: 20px;
background: #0f172a; /* dark background */
border-radius: 12px;
border: 1px solid #1e293b;
}
.team-title {
font-size: 2rem;
margin-bottom: 16px;
color: #e5e7eb; /* light text */
text-align: center;
}
.founder-card {
padding: 16px 20px;
background: #020617;
border-radius: 10px;
box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
.founder-name {
font-size: 1.6rem;
margin: 0 0 4px;
color: #38bdf8; /* accent color */
}
.founder-role {
margin: 0 0 10px;
color: #a5b4fc;
font-weight: 500;
}
.founder-text {
margin: 0;
color: #cbd5f5;
line-height: 1.6;
}
footer {
text-align: center;
font-size: 0.95em;
background: #222;
color: #ffcc00;
padding: 20px 10px;
margin-top: 40px;
border-top: 2px solid #ffcc00;
}
@media (max-width: 650px) {
body, section { padding: 10px 3vw; }
nav { flex-direction: column; gap: 0.7em; padding: 10px 0; }
.logo { width: 48px; }
h1, h2 { font-size: 1.18em; }
.service-list, .service-list li { font-size: 1em; }
}
.banner {
width: 100%;
overflow: hidden;
}
.banner-img {
width: 100%;
height: 240px; /* Adjust height as needed */
object-fit: cover; /* Makes sure the image always covers the banner area */
display: block;
}