| title: | Mission work - Lightweight Industries |
|---|
| description: | Consolidating 3 missions into one. |
|---|
Consolidating three missions into one.
As for the demo, it works with Salesforce's developer sandbox data and runs out
of my Notion and Val Town accounts.
Background

/* 1. Base style for the entire logo container */
.my-logo {
width: 100%; /* Makes it responsive */
max-width: 400px; /* Adjust this to set the display size on your site */
height: auto;
}
/* 2. Control the color of your shapes */
.logo-part {
fill: #00a2ff; /* Your original blue color */
transition: fill 0.3s ease; /* Makes color changes/hovers look smooth */
}
/* 3. Example: Change the color on Hover */
.my-logo:hover .logo-part {
fill: #ff5733; /* Changes to a vibrant orange-red on hover */
}
