body { font-family: Arial, sans-serif; background-color: #f4f4f4; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; color: #333; } .container { background-color: white; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); text-align: center; max-width: 500px; width: 100%; } h1 { margin-bottom: 20px; } input[type="file"] { margin: 20px 0; } button { background-color: #007bff; color: white; border: none; padding: 10px 20px; border-radius: 4px; cursor: pointer; font-size: 16px; } button:hover { background-color: #0056b3; } .result { margin-top: 20px; display: none; } .result h2 { margin-bottom: 10px; }