
Image Background Remover
Original Image
Background Removed Image
CSS (style.css):
css
Copy code
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
.input {
margin-bottom: 20px;
}
.output {
margin-top: 20px;
text-align: center;
}
img {
max-width: 500px;
margin: 10px 0;
}
button {
padding: 10px 20px;
font-size: 16px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}