Spaces:
Sleeping
Sleeping
| /* styles.css */ | |
| /* Apply styles to the body element */ | |
| body { | |
| font-family: Arial, sans-serif; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| /* Center the main content */ | |
| .container { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| height: 100vh; | |
| } | |
| /* Style the image upload form */ | |
| .form { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| margin-bottom: 20px; | |
| } | |
| .form input[type="file"] { | |
| margin-bottom: 10px; | |
| } | |
| .form button { | |
| padding: 10px 20px; | |
| background-color: #333; | |
| color: #fff; | |
| border: none; | |
| cursor: pointer; | |
| } | |
| /* Style the result display */ | |
| .result { | |
| text-align: center; | |
| margin-top: 20px; | |
| } | |
| .result h2 { | |
| font-size: 24px; | |
| margin-bottom: 10px; | |
| } | |
| .result img { | |
| width: 200px; | |
| height: auto; | |
| margin-bottom: 10px; | |
| } | |
| .result p { | |
| font-size: 18px; | |
| margin-bottom: 10px; | |
| } | |