Created
October 25, 2025 13:35
-
-
Save kgalarza95/033ec5c821c5dbc2c36ce93f022d2621 to your computer and use it in GitHub Desktop.
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
| .home-page { | |
| text-align: center; | |
| } | |
| .intro { | |
| font-size: 1.2rem; | |
| color: #666; | |
| max-width: 600px; | |
| margin: 20px auto 50px; | |
| } | |
| .features { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); | |
| gap: 30px; | |
| max-width: 900px; | |
| margin: 0 auto; | |
| } | |
| .feature-card { | |
| background-color: white; | |
| padding: 40px 30px; | |
| border-radius: 12px; | |
| box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | |
| transition: transform 0.3s; | |
| } | |
| .feature-card:hover { | |
| transform: translateY(-10px); | |
| box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15); | |
| } | |
| .feature-card h3 { | |
| color: #667eea; | |
| font-size: 1.5rem; | |
| margin-bottom: 15px; | |
| } | |
| .feature-card p { | |
| color: #666; | |
| font-size: 1rem; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment