| | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); |
| | body { |
| | font-family: 'Inter', sans-serif; |
| | line-height: 1.6; |
| | background-color: #121212; |
| | color: white; |
| | margin-bottom: 100px; |
| | } |
| | .container { |
| | max-width: 1200px; |
| | } |
| |
|
| | |
| | @keyframes fadeIn { |
| | from { opacity: 0; transform: translateY(20px); } |
| | to { opacity: 1; transform: translateY(0); } |
| | } |
| |
|
| | .animate-fade-in { |
| | animation: fadeIn 0.6s ease-out forwards; |
| | } |
| |
|
| | |
| | .delay-100 { |
| | animation-delay: 0.1s; |
| | } |
| |
|
| | .delay-200 { |
| | animation-delay: 0.2s; |
| | } |
| |
|
| | .delay-300 { |
| | animation-delay: 0.3s; |
| | } |
| |
|
| | |
| | .custom-shadow { |
| | box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); |
| | transition: box-shadow 0.3s ease; |
| | } |
| |
|
| | .custom-shadow:hover { |
| | box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); |
| | } |