 {} *{} #IE-warning { display: none; position: fixed; width: 100%; height: 100%; z-index: 9999; background: white; } .IE-warning-message { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; } :root { --primary-color: #2d3436; --accent-color: #0984e3; --text-gray: #636e72; } body { font-family: 'Tajawal', sans-serif; background-color: #f9f9f9; margin: 0; display: flex; align-items: center; justify-content: center; height: 100vh; color: var(--primary-color); } .container { text-align: center; padding: 20px; max-width: 600px; } .error-code { font-size: 120px; font-weight: 700; margin: 0; color: var(--accent-color); line-height: 1; letter-spacing: 5px; } h1 { font-size: 28px; margin-top: 10px; } p { font-size: 18px; color: var(--text-gray); margin-bottom: 30px; } .home-button { display: inline-block; padding: 12px 30px; background-color: var(--accent-color); color: white; text-decoration: none; border-radius: 50px; font-weight: 700; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 15px rgba(9, 132, 227, 0.3); } .home-button:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(9, 132, 227, 0.4); } .illustration { width: 100%; max-width: 300px; margin-bottom: 20px; }
