diff --git "a/index.html" "b/index.html" --- "a/index.html" +++ "b/index.html" @@ -150,25 +150,6 @@ filter: blur(0); } - .typewriter { - overflow: hidden; - border-right: 2px solid var(--neon-green); - white-space: nowrap; - margin: 0 auto; - letter-spacing: 2px; - animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite; - } - - @keyframes typing { - from { width: 0 } - to { width: 100% } - } - - @keyframes blink-caret { - from, to { border-color: transparent } - 50% { border-color: var(--neon-green) } - } - .fade-in { animation: fadeIn 1s ease-in forwards; } @@ -177,1071 +158,1079 @@ from { opacity: 0; } to { opacity: 1; } } - - .scroll-indicator { - position: absolute; - bottom: 30px; - left: 50%; - transform: translateX(-50%); - animation: bounce 2s infinite; - } - - @keyframes bounce { - 0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); } - 40% { transform: translateY(-20px) translateX(-50%); } - 60% { transform: translateY(-10px) translateX(-50%); } - }
- -