DjayChucko's picture
Build me a landing page using this html:
0b2a6ce verified
/* Custom fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
/* Base styles */
body {
font-family: 'Inter', sans-serif;
line-height: 1.6;
}
/* Custom animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.fade-in {
animation: fadeIn 0.6s ease-out forwards;
}
/* Gradient text */
.gradient-text {
background-clip: text;
-webkit-background-clip: text;
color: transparent;
background-image: linear-gradient(90deg, #6366f1, #8b5cf6);
}
/* Custom shadows */
.custom-shadow {
box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.2),
0 10px 10px -5px rgba(99, 102, 241, 0.04);
}
/* Responsive tweaks */
@media (max-width: 768px) {
.mobile-flex-col {
flex-direction: column;
}
.mobile-text-center {
text-align: center;
}
}
/* Smooth transitions */
.transition-all {
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 300ms;
}
/* Enhanced focus states */
.focus-visible {
outline: 2px solid #6366f1;
outline-offset: 2px;
}