Welcome to My Neocities!

A simple, fun personal website ✨

About This Site

This is my personal Neocities site! I’ll share cool projects, ideas, and fun experiments here.

Latest Update

🚀 Just launched my site! More content coming soon.

🎨 style.css css Копіювати код /* General Reset */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Body */ body { font-family: Arial, sans-serif; line-height: 1.6; background: #f8f9fa; color: #333; display: flex; flex-direction: column; min-height: 100vh; } /* Header */ header { background: #6c5ce7; color: white; text-align: center; padding: 2rem 1rem; } header h1 { margin-bottom: 0.5rem; } /* Navigation */ nav { background: #4834d4; } nav ul { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; } nav ul li { margin: 0.5rem; } nav ul li a { color: white; text-decoration: none; padding: 0.5rem 1rem; border-radius: 6px; transition: background 0.3s; } nav ul li a:hover, nav ul li a.active { background: #341f97; } /* Main Content */ main { flex: 1; max-width: 800px; margin: 2rem auto; padding: 1rem; } section { margin-bottom: 2rem; } h2 { margin-bottom: 0.5rem; color: #2d3436; } /* Footer */ footer { background: #dfe6e9; text-align: center; padding: 1rem; font-size: 0.9rem;