Spaces:
Build error
Build error
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,13 +1,39 @@
|
|
| 1 |
-
|
| 2 |
-
width: 200px;
|
| 3 |
-
border-radius: 12px;
|
| 4 |
-
}
|
| 5 |
#card {
|
| 6 |
-
border:
|
| 7 |
-
border-radius:
|
| 8 |
-
padding:
|
| 9 |
-
max-width:
|
| 10 |
-
margin: auto;
|
| 11 |
-
background
|
|
|
|
|
|
|
| 12 |
text-align: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* Container styling */
|
|
|
|
|
|
|
|
|
|
| 2 |
#card {
|
| 3 |
+
border: 1px solid rgba(138, 43, 226, 0.3);
|
| 4 |
+
border-radius: 24px;
|
| 5 |
+
padding: 30px;
|
| 6 |
+
max-width: 600px;
|
| 7 |
+
margin: 40px auto;
|
| 8 |
+
background: rgba(255, 255, 255, 0.8);
|
| 9 |
+
backdrop-filter: blur(10px);
|
| 10 |
+
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
| 11 |
text-align: center;
|
| 12 |
+
transition: transform 0.3s ease;
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
#card:hover {
|
| 16 |
+
transform: translateY(-5px);
|
| 17 |
+
border-color: #8A2BE2;
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
/* Image styling */
|
| 21 |
+
#logo-img img {
|
| 22 |
+
width: 250px !important;
|
| 23 |
+
height: auto !important;
|
| 24 |
+
border-radius: 15px;
|
| 25 |
+
margin: 0 auto;
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
/* Text styling */
|
| 29 |
+
.desc-text {
|
| 30 |
+
color: #4b5563;
|
| 31 |
+
line-height: 1.6;
|
| 32 |
+
font-size: 1.1em;
|
| 33 |
}
|
| 34 |
+
|
| 35 |
+
h2 {
|
| 36 |
+
color: #8A2BE2;
|
| 37 |
+
margin-top: 15px !important;
|
| 38 |
+
font-weight: 800 !important;
|
| 39 |
+
}
|