We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8832e3f commit 76fb869Copy full SHA for 76fb869
style.css
@@ -251,3 +251,18 @@ footer {
251
opacity: 1;
252
transform: translateY(0);
253
}
254
+
255
+.hero-logo {
256
+ width: 280px; /* same size as index logo */
257
+ max-width: 90%; /* stays responsive on smaller screens */
258
+ height: auto;
259
+ margin-bottom: 30px;
260
+ filter: drop-shadow(0 0 25px rgba(0, 119, 255, 0.4));
261
+ transition: transform 0.4s ease, filter 0.4s ease;
262
+}
263
264
+.hero-logo:hover {
265
+ transform: scale(1.05);
266
+ filter: drop-shadow(0 0 35px rgba(0, 140, 255, 0.6));
267
268
0 commit comments