Spaces:
Running
Running
| body { | |
| font-family: Arial, sans-serif; | |
| background-color: #f4f4f4; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| height: 100vh; | |
| margin: 0; | |
| } | |
| .container { | |
| background-color: #fff; | |
| padding: 20px; | |
| border-radius: 8px; | |
| box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | |
| max-width: 500px; | |
| width: 100%; | |
| } | |
| textarea { | |
| width: 100%; | |
| height: 100px; | |
| margin-bottom: 10px; | |
| padding: 10px; | |
| border-radius: 4px; | |
| border: 1px solid #ccc; | |
| font-size: 16px; | |
| } | |
| button { | |
| background-color: #4CAF50; | |
| color: white; | |
| padding: 10px 20px; | |
| border: none; | |
| border-radius: 4px; | |
| cursor: pointer; | |
| font-size: 16px; | |
| } | |
| button:hover { | |
| background-color: #45a049; | |
| } | |
| h1, h2 { | |
| margin-top: 0; | |
| } | |
| select { | |
| margin-bottom: 10px; | |
| padding: 10px; | |
| width: 100%; | |
| border-radius: 4px; | |
| border: 1px solid #ccc; | |
| font-size: 16px; | |
| } | |