حاسبة العمر

مرحباً، ما هو اسمك؟

#age-calculator { max-width: 500px; margin: 0 auto; background-color: #f5f5f5; background-image: url('https://example.com/background-image.jpg'); background-repeat: no-repeat; background-size: cover; border-radius: 5px; padding: 20px; box-shadow: 0 0 10px rgba(0,0,0,0.2); text-align: center; font-family: Arial, sans-serif; } h1 { font-size: 32px; margin-top: 0; } form { margin-top: 20px; } label { font-size: 18px; } button { margin-top: 20px; padding: 10px 20px; background-color: #333; color: #fff; border: none; border-radius: 5px; cursor: pointer; font-family: Arial, sans-serif; } button:hover { background-color: #555; } #result { margin-top: 20px; font-size: 24px; font-family: Arial, sans-serif; color: #333; } ```