Changed around line 1
+
+
+
+
+
+
Frameee - Create Stunning Animated Text Videos+
+
+ :root {
+ --primary: #4f46e5;
+ --secondary: #818cf8;
+ --dark: #1f2937;
+ --light: #f3f4f6;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
+ Oxygen, Ubuntu, Cantarell, sans-serif;
+ }
+
+ body {
+ background-color: var(--light);
+ color: var(--dark);
+ line-height: 1.6;
+ }
+
+ .header {
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ padding: 1.5rem;
+ position: fixed;
+ width: 100%;
+ z-index: 100;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ .nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: bold;
+ color: white;
+ text-decoration: none;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ margin-left: 2rem;
+ font-weight: 500;
+ transition: opacity 0.3s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .hero {
+ padding: 12rem 2rem 6rem;
+ text-align: center;
+ background: white;
+ }
+
+ .hero-content {
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1.5rem;
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ opacity: 0;
+ transform: translateY(20px);
+ }
+
+ .hero p {
+ font-size: 1.5rem;
+ color: #4b5563;
+ margin-bottom: 2rem;
+ opacity: 0;
+ transform: translateY(20px);
+ }
+
+ .cta-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ color: white;
+ text-decoration: none;
+ border-radius: 50px;
+ font-weight: bold;
+ font-size: 1.2rem;
+ transition:
+ transform 0.3s,
+ box-shadow 0.3s;
+ opacity: 0;
+ transform: translateY(20px);
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
+ }
+
+ .features {
+ padding: 6rem 2rem;
+ background: var(--light);
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .feature-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
+ text-align: center;
+ transition: transform 0.3s;
+ opacity: 0;
+ transform: translateY(20px);
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ color: var(--primary);
+ }
+
+ .feature-card h3 {
+ margin-bottom: 1rem;
+ color: var(--dark);
+ }
+
+ .feature-card p {
+ color: #6b7280;
+ }
+
+ .demo {
+ width: 100%;
+ max-width: 600px;
+ height: 400px;
+ margin: 3rem auto;
+ background: var(--dark);
+ border-radius: 1rem;
+ overflow: hidden;
+ position: relative;
+ opacity: 0;
+ transform: translateY(20px);
+ }
+
+ .demo-text {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ color: white;
+ font-size: 2rem;
+ font-weight: bold;
+ width: 100%;
+ text-align: center;
+ opacity: 0;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero p {
+ font-size: 1.2rem;
+ }
+ }
+
+
+
+
+
+
+
+
+
+
+
Create Stunning Animated Text Videos
+ Boost your social media presence and grow your engagement with ease
+
+
+
+
+
+
+
+
Beautiful Templates
+ Choose from hundreds of professionally designed templates to create
+ eye-catching videos in minutes.
+
+
+
+
Easy to Use
+ No design skills required. Our intuitive interface makes video
+ creation a breeze.
+
+
+
+
Social Media Ready
+ Export your videos in perfect formats for all major social media
+ platforms.
+
+
+
+
+
+
+ // Animation for hero elements
+ gsap.to(".hero h1", {
+ opacity: 1,
+ y: 0,
+ duration: 1,
+ delay: 0.2,
+ });
+
+ gsap.to(".hero p", {
+ opacity: 1,
+ y: 0,
+ duration: 1,
+ delay: 0.4,
+ });
+
+ gsap.to(".cta-button", {
+ opacity: 1,
+ y: 0,
+ duration: 1,
+ delay: 0.6,
+ });
+
+ gsap.to(".demo", {
+ opacity: 1,
+ y: 0,
+ duration: 1,
+ delay: 0.8,
+ });
+
+ // Feature cards animation
+ gsap.to(".feature-card", {
+ opacity: 1,
+ y: 0,
+ duration: 1,
+ delay: 1,
+ stagger: 0.2,
+ });
+
+ // Demo text animation
+ const demoTexts = [
+ "Your Message Here",
+ "Boost Engagement 📈",
+ "Go Viral ⭐",
+ "Stand Out 🌟",
+ ];
+
+ let currentText = 0;
+
+ function animateText() {
+ gsap.to(".demo-text", {
+ opacity: 0,
+ y: -20,
+ duration: 0.5,
+ onComplete: () => {
+ document.querySelector(".demo-text").textContent =
+ demoTexts[currentText];
+ currentText = (currentText + 1) % demoTexts.length;
+ gsap.to(".demo-text", {
+ opacity: 1,
+ y: 0,
+ duration: 0.5,
+ });
+ },
+ });
+ }
+
+ // Initial text animation
+ gsap.to(".demo-text", {
+ opacity: 1,
+ duration: 1,
+ delay: 1,
+ });
+
+ // Start the text rotation
+ setInterval(animateText, 3000);
+
+
+