Spaces:
Running
Running
| /* Custom styles */ | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| min-height: 100vh; | |
| display: flex; | |
| flex-direction: column; | |
| } | |
| .container { | |
| max-width: 1200px; | |
| } | |
| img { | |
| transition: transform 0.3s ease; | |
| } | |
| img:hover { | |
| transform: scale(1.05); | |
| } |