This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* About Section */ | |
| .about-content { | |
| display: flex; | |
| align-items: center; | |
| gap: 40px; | |
| } | |
| /* Sparky Mascot Styling */ | |
| .about-image { | |
| flex: 0 0 180px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Skills Section */ | |
| .skills-container { | |
| display: flex; | |
| flex-wrap: wrap; | |
| gap: 20px; | |
| margin-top: 20px; | |
| } | |
| .skill-item { | |
| flex: 1 1 calc(33.333% - 20px); |