Input: 2 Images, Texts Messages in Thread: 4 Features: Hero section, course catalog, certification cards, user reviews, instructor bios
Open this chat in IDE
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
@import '@mantine/core/styles.css';
:root {
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
background: #0f1219;
color: #f2f2f2;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
overflow-x: hidden;
}
#root {
margin: auto;
}
/* Glassmorphism utility classes */
.glass {
background: rgba(39, 43, 52, 0.3);
backdrop-filter: blur(20px);
border: 1px solid rgba(242, 242, 242, 0.1);
}
.glass-strong {
background: rgba(39, 43, 52, 0.6);
backdrop-filter: blur(30px);
border: 1px solid rgba(242, 242, 242, 0.15);
}
/* Animated text effects */
@keyframes slideInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInScale {
from {
opacity: 0;
transform: scale(0.95);
}
to {
opacity: 1;
transform: scale(1);
}
}
@keyframes float {
0%, 100% {
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
}
.animate-slide-up {
animation: slideInUp 0.8s ease-out forwards;
}
.animate-fade-scale {
animation: fadeInScale 0.6s ease-out forwards;
}
.animate-float {
animation: float 3s ease-in-out infinite;
}
/* Scroll animations */
.scroll-reveal {
opacity: 0;
transform: translateY(50px);
transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-reveal.revealed {
opacity: 1;
transform: translateY(0);
}
/* Hover effects */
.hover-lift {
transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hover-lift:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.hover-glow {
transition: all 0.3s ease;
}
.hover-glow:hover {
box-shadow: 0 0 30px rgba(187, 50, 255, 0.3);
}
/* Gradient text */
.gradient-text {
background: linear-gradient(135deg, #bb32ff, #00a9ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #181c24;
}
::-webkit-scrollbar-thumb {
background: #bb32ff;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #9d2bdb;
}
Read-onlyPlease wait while we set everything up