| /* style.css */ | |
| /* Body font and background */ | |
| body { | |
| font-family: 'Arial', sans-serif; | |
| background-color: #f9f9f9; | |
| color: #333333; | |
| } | |
| /* Headings */ | |
| h1, h2, h3, h4 { | |
| color: #1f2937; | |
| } | |
| /* Text area */ | |
| textarea { | |
| border-radius: 8px; | |
| border: 1px solid #d1d5db; | |
| padding: 10px; | |
| } | |
| /* Buttons */ | |
| button { | |
| background-color: #2563eb; | |
| color: white; | |
| border-radius: 8px; | |
| padding: 8px 15px; | |
| font-size: 16px; | |
| cursor: pointer; | |
| } | |
| button:hover { | |
| background-color: #1d4ed8; | |
| } | |