-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
84 lines (71 loc) · 1.72 KB
/
about.css
File metadata and controls
84 lines (71 loc) · 1.72 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
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
* {
margin: 0;
scroll-behavior: smooth;
}
header {
height: 100vh;
background-image: url(https://t4.ftcdn.net/jpg/02/67/40/21/360_F_267402109_jZvsqRQUvSxohAOmcUt549jlapqoRHM0.jpg);
background-size: cover;
}
.text {
text-align: center;
font-family: 'DM Sans', sans-serif;
color: white;
}
.sub-txt{
margin-top: 1em;
}
.head-txt {
text-transform: uppercase;
font-size: 65px;
font-weight: 700;
margin-top: 30vh;
}
.content {
padding: 4em;
text-align: center;
font-family: 'DM Sans', sans-serif;
}
.main-text {
font-family: 'DM Sans', sans-serif;
}
.o-links {
display: flex;
align-items: center;
justify-content: center;
}
@media (max-width: 1088px) {
.o-links {
flex-direction: column;
}
}
.o-links > a {
color: #503B7C;
font-weight: 600;
font-size: 20px;
}
.content h2 {
margin-top: 50px;
font-family: 'Red Hat Display', sans-serif;
font-size: 27px;
font-weight: 700;
}
.content p, .content a{
margin: 1em;
text-decoration: none;
}
footer {
margin-top: 50px;
text-align: center;
font-family: 'DM Sans', sans-serif;
border-top: 1px solid black;
/* background: linear-gradient(180deg, #d3d7e8, #ebf0f6); */
}
footer > p {
padding: 20px;
margin-left: 40px;
margin-right: 40px;
}