Spaces:
Running
Running
Update styles.css
Browse files- styles.css +25 -2
styles.css
CHANGED
@@ -37,7 +37,7 @@ body {
|
|
37 |
height: 100%;
|
38 |
z-index: -1;
|
39 |
pointer-events: none;
|
40 |
-
mix-blend-mode: screen;
|
41 |
}
|
42 |
|
43 |
.container {
|
@@ -86,6 +86,19 @@ header {
|
|
86 |
animation: fadeIn 4s ease-in-out;
|
87 |
}
|
88 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
@keyframes fadeIn {
|
90 |
0% { opacity: 0; transform: translateY(30px); }
|
91 |
100% { opacity: 0.9; transform: translateY(0); }
|
@@ -115,7 +128,7 @@ header {
|
|
115 |
}
|
116 |
|
117 |
.layer-1 {
|
118 |
-
background: url('cream.png') no-repeat center/contain;
|
119 |
filter: drop-shadow(0 0 70px rgba(0, 255, 204, 1)) brightness(1.4);
|
120 |
animation: holoFloat 12s infinite ease-in-out;
|
121 |
}
|
@@ -230,6 +243,11 @@ header {
|
|
230 |
font-size: 1.8rem;
|
231 |
}
|
232 |
|
|
|
|
|
|
|
|
|
|
|
233 |
.hero {
|
234 |
flex-direction: column;
|
235 |
text-align: center;
|
@@ -272,6 +290,11 @@ header {
|
|
272 |
font-size: 1.4rem;
|
273 |
}
|
274 |
|
|
|
|
|
|
|
|
|
|
|
275 |
.hero-text h2 {
|
276 |
font-size: 2rem;
|
277 |
}
|
|
|
37 |
height: 100%;
|
38 |
z-index: -1;
|
39 |
pointer-events: none;
|
40 |
+
mix-blend-mode: screen;
|
41 |
}
|
42 |
|
43 |
.container {
|
|
|
86 |
animation: fadeIn 4s ease-in-out;
|
87 |
}
|
88 |
|
89 |
+
.header-cream {
|
90 |
+
width: 20%;
|
91 |
+
max-width: 300px;
|
92 |
+
margin-top: 3rem;
|
93 |
+
filter: drop-shadow(0 0 30px rgba(0, 255, 204, 0.8));
|
94 |
+
animation: floatHeader 8s infinite ease-in-out;
|
95 |
+
}
|
96 |
+
|
97 |
+
@keyframes floatHeader {
|
98 |
+
0%, 100% { transform: translateY(0); }
|
99 |
+
50% { transform: translateY(-20px); }
|
100 |
+
}
|
101 |
+
|
102 |
@keyframes fadeIn {
|
103 |
0% { opacity: 0; transform: translateY(30px); }
|
104 |
100% { opacity: 0.9; transform: translateY(0); }
|
|
|
128 |
}
|
129 |
|
130 |
.layer-1 {
|
131 |
+
background: url('cream.png') no-repeat center/contain;
|
132 |
filter: drop-shadow(0 0 70px rgba(0, 255, 204, 1)) brightness(1.4);
|
133 |
animation: holoFloat 12s infinite ease-in-out;
|
134 |
}
|
|
|
243 |
font-size: 1.8rem;
|
244 |
}
|
245 |
|
246 |
+
.header-cream {
|
247 |
+
width: 40%;
|
248 |
+
max-width: 200px;
|
249 |
+
}
|
250 |
+
|
251 |
.hero {
|
252 |
flex-direction: column;
|
253 |
text-align: center;
|
|
|
290 |
font-size: 1.4rem;
|
291 |
}
|
292 |
|
293 |
+
.header-cream {
|
294 |
+
width: 50%;
|
295 |
+
max-width: 150px;
|
296 |
+
}
|
297 |
+
|
298 |
.hero-text h2 {
|
299 |
font-size: 2rem;
|
300 |
}
|