-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
391 lines (355 loc) · 6.41 KB
/
style.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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@300&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: kanit;
text-decoration: none;
scroll-behavior: smooth;
}
body {
background-color: black;
color: white;
font-family: "Kanit", sans-serif;
color: aliceblue;
}
header {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 100px;
text-transform: uppercase;
}
.logo {
color: aliceblue;
font-weight: bolder;
font-size: 1.2rem;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.navigation a {
color: #fff;
margin: 0 20px;
}
.navigation a:hover {
transition: 0.3s;
color: gray;
}
.hero_content {
padding: 50px;
display: flex;
}
.hero_content .mountain {
display: flex;
justify-content: center;
padding-left: 10rem;
}
.hero_content h1 {
font-size: 5rem;
margin-bottom: 1.8rem;
}
.hero_content h2 {
max-width: 600px;
font-size: 1.2rem;
}
.hero_content .btn {
display: flex;
padding: 1rem 3rem;
margin-top: 2rem;
font-weight: bold;
align-items: center;
}
#peru {
padding: 8rem 0rem;
width: 100%;
border-radius: 120px;
}
.second_hero {
display: flex;
justify-content: center;
padding-bottom: 8rem;
flex-direction: column;
align-items: center;
}
.second_hero h1 {
max-width: 550px;
text-align: center;
font-size: 3rem;
margin-bottom: 8rem;
}
.one {
display: flex;
justify-content: space-between;
align-items: center;
}
.one img {
padding: 8rem 0rem;
width: 100%;
padding: 5rem;
border-radius: 10rem;
}
.write {
padding: 2rem;
max-width: 400px;
}
.btn {
display: flex;
padding: 0.8rem 1.5rem;
font-size: 1rem;
border-radius: 20px;
border: 1px solid white;
background: white;
color: black;
font-weight: bolder;
text-transform: uppercase;
transition: 0.2s ease-in-out all;
margin-top: 1rem;
}
.btn:hover {
cursor: pointer;
background: black;
color: white;
scale: 1.09;
}
/*
.write .btn1 {
border-radius: 1.2rem;
background-color: #fff;
border: none;
color: black;
text-align: center;
font-size: 15px;
padding: 10px 20px;
cursor: pointer;
margin-top: 30px;
} */
main {
max-width: 1600px;
width: 100%;
margin: 0 auto;
}
/* The Expore Section */
.explore {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 3rem 0rem;
}
.explore h1 {
max-width: 560px;
text-align: center;
font-size: 3rem;
margin-bottom: 2rem;
}
/* Examples Section */
.examples {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.examples div {
padding: 1rem;
}
.examples .left {
flex: 0.5;
}
.examples .left img,
.examples .right img {
width: 100%;
max-height: 400px;
min-height: 400px;
min-width: 500px;
object-fit: cover;
margin-bottom: 1rem;
}
.examples .left h3,
.examples .right h3 {
margin-bottom: 0.8rem;
}
.examples .right {
flex: 0.5;
}
/* Compaines Section */
.compaines {
padding: 8rem;
display: flex;
justify-content: center;
align-items: center;
}
.compaines_content {
display: flex;
}
.compaines_content h1 {
font-size: 1.9rem;
margin: 0rem 3rem;
}
.partner {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 3rem 0rem;
}
.partner h1 {
text-align: center;
font-size: 3rem;
margin-bottom: 2rem;
}
/* Footer section */
footer {
padding-right: 4rem;
padding-left: 4rem;
padding-top: 4rem;
padding-bottom: 3rem;
display: flex;
justify-content: space-between;
flex-direction: column;
}
footer .links {
display: flex;
text-transform: uppercase;
}
footer .links ul {
list-style: none;
margin: 0rem 2.5rem;
}
footer .links ul li {
font-size: 1rem;
font-weight: lighter;
margin: 0.4rem 0rem;
cursor: pointer;
transition: 0.1s ease-in-out all;
}
footer .links ul li:hover,
.work_btn {
color: rgba(239, 239, 239, 0.782);
}
footer .newsletter_socialMedia {
align-self: flex-end;
display: flex;
justify-content: center;
align-items: center;
margin: 4rem 0;
}
footer .newsletter_socialMedia ul {
list-style: none;
display: flex;
}
footer .newsletter_socialMedia ul li {
margin: 0rem 1rem;
}
footer .newsletter_socialMedia button,
.work_btn {
padding: 0.7rem 2rem;
font-size: 1rem;
border-radius: 20px;
border: 1px solid white;
background: transparent;
color: white;
font-weight: bolder;
text-transform: uppercase;
transition: 0.2s ease-in-out all;
margin-top: 0;
}
footer .newsletter_socialMedia button:hover,
.work_btn {
cursor: pointer;
background: white;
color: black;
scale: 1.09;
}
/* Media Query */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
header nav {
display: none;
}
.hero_content h1 {
font-size: 3rem;
}
.hero_content h2 {
font-size: 1rem;
}
.hero_content .btn {
height: 3.5rem;
width: 13rem;
font-size: 0.9rem;
}
.btn {
height: 3rem;
width: 10rem;
font-size: 0.8rem;
display: flex;
align-items: center;
border-radius: 3rem;
}
.second_hero h1 {
font-size: 1.5rem;
}
.explore h1 {
font-size: 1.5rem;
text-align: center;
}
.examples .left img,
.examples .right img {
width: 100%;
max-height: 200px;
min-height: 200px;
min-width: 300px;
}
.compaines_content {
font-size: 0.5rem;
flex-direction: column;
text-align: center;
}
section {
display: flex;
}
.one {
flex-direction: column;
}
.sec {
flex-direction: column-reverse;
}
.one img {
min-width: 500px;
}
.explore .btn {
text-align: center;
display: flex;
justify-content: center;
}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
header,
.logo {
font-size: 0.8rem;
padding: 20px 30px;
}
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
header,
.logo {
font-size: 1rem;
}
.hero_content .mountain {
display: none;
}
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
header,
.logo {
font-size: 1.2rem;
}
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
.btn {
align-items: center;
}
}