아웃
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>심플라이너 (SimpLiner)</title> <style> :root { --bg-color: #f7f9fc; --primary: #4a90e2; --text: #333; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: var(--bg-color); color: var(--text); margin: 0; padding: 20px; display: flex; justify-content: center; } .app-container { width: 100%; max-width: 600px; background: white; padding: 20px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); } /* 헤더 & 입력창 */ h1 { font-size: 20px; margin-bottom: 20px; text-align: center; color: var(--primary); } ...