* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Segoe UI', sans-serif; background: #111; color: #fff; line-height: 1.6; } a { color: #ff4081; text-decoration: none; } .container { width: 90%; max-width: 1000px; margin: 0 auto; padding: 20px 0; } header { background: #000; padding: 20px 0; border-bottom: 2px solid #ff4081; } header h1 { float: left; font-size: 26px; color: #fff; } nav { float: right; } nav a { margin-left: 20px; font-weight: bold; } .hero { background: url('https://images.unsplash.com/photo-1511376777868-611b54f68947?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover; height: 80vh; display: flex; align-items: center; text-align: center; justify-content: center; flex-direction: column; } .hero h2 { font-size: 40px; color: #fff; } .hero p { font-size: 18px; color: #ddd; } .section { padding: 60px 0; background: #1c1c1c; } .section:nth-child(even) { background: #181818; } h2 { font-size: 28px; margin-bottom: 20px; color: #ff4081; } .track-list li { margin-bottom: 10px; list-style: none; } footer { background: #000; text-align: center; padding: 20px 0; font-size: 14px; color: #aaa; border-top: 2px solid #ff4081; }