-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
168 lines (149 loc) · 3.42 KB
/
Copy pathabout.css
File metadata and controls
168 lines (149 loc) · 3.42 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
162
163
164
165
166
167
168
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
margin: 0;
padding: 0;
min-height: 100vh;
background-image: url("../../assets/bg-blur.jpg");
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
background-attachment: fixed;
font-family: 'Poppins', sans-serif;
}
nav {
margin: 20px 20px;
display: flex;
justify-content: space-around;
align-items: center;
}
.logo {
font-family: Playfair Display;
font-size: 34px;
display: flex;
align-items: center;
gap: 5px;
justify-content: center;
}
.navigations {
cursor: pointer;
font-family: Playfair Display;
font-size: 18px;
display: flex;
justify-content: space-around;
background: rgba(255, 255, 255, 0.2);
border-radius: 100px;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.3);
padding: 12px 20px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
gap: 20px;
margin: auto;
transition: all 0.2s ease-in-out;
}
.navigations:hover {
transform: translateY(-5px);
}
.navigations span {
padding: 10px 15px;
border-radius: 20px;
text-align: center;
}
.navigations span:hover {
transition: all 0.5s ease-out;
background-color: black;
color: white;
}
.targeted {
background-color: black;
color: white;
}
.getstarted {
cursor: pointer;
font-family: Playfair Display;
font-size: 18px;
padding: 12px 34px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-radius: 100px;
transition: all 0.2s ease-out;
}
.getstarted:hover {
transform: translateY(-5px);
background-color: black;
color: white;
}
.about-hero {
text-align: center;
padding: 60px 20px 30px 20px;
font-family: Playfair Display;
}
.about-hero h1 {
font-size: 56px;
margin-bottom: 20px;
}
.about-hero p {
font-family: Poppins;
font-size: 20px;
width: 70vw;
margin: auto;
}
.about-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
padding: 40px 60px;
}
.about-card {
background: rgba(255, 255, 255, 0.25);
border-radius: 15px;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
padding: 25px;
transition: transform 0.3s ease;
}
.about-card:hover {
transform: translateY(-5px);
}
.about-card h2 {
font-family: Playfair Display;
font-size: 28px;
margin-bottom: 15px;
}
.about-card p,
.about-card ul {
font-family: Poppins;
font-size: 16px;
line-height: 1.5;
}
.about-card ul {
padding-left: 20px;
margin: 0;
}
@media only screen and (max-width: 600px) {
nav {
flex-direction: column;
gap: 20px;
}
.about-hero h1 {
font-size: 36px;
}
.about-hero p {
font-size: 16px;
width: 90vw;
}
.about-content {
padding: 20px;
}
.getstarted {
position: fixed;
margin: auto;
z-index: 100;
top: 80vh;
transform: translateY(-5px);
background-color: black;
color: white;
}
}