body { font-family: 'Arial', sans-serif; background: linear-gradient(to right, #ece9e6, #ffffff); margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; min-height: 100vh; color: #333; overflow: auto; } .container { background: #fff; padding: 30px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); border-radius: 10px; max-width: 600px; width: 100%; text-align: center; overflow: auto; } h1 { font-size: 2em; margin-bottom: 20px; color: #4A90E2; } form { display: flex; flex-direction: column; align-items: center; gap: 15px; } label { font-size: 1.1em; } input[type="file"] { padding: 10px; border: 1px solid #ccc; border-radius: 5px; width: 100%; max-width: 400px; } input[type="submit"] { background: #4A90E2; color: #fff; border: none; padding: 10px 20px; border-radius: 5px; font-size: 1.1em; cursor: pointer; transition: background 0.3s; } input[type="submit"]:hover { background: #357ABD; } h2 { font-size: 1.5em; margin-top: 30px; color: #333; } img { max-width: 100%; max-height: 60vh; margin-top: 15px; border: 1px solid #ccc; border-radius: 10px; object-fit: contain; } a#download-link { display: inline-block; margin-top: 20px; padding: 10px 20px; background: #4A90E2; color: #fff; text-decoration: none; border-radius: 5px; transition: background 0.3s; } a#download-link:hover { background: #357ABD; }