Spaces:
Runtime error
Runtime error
| /* styles.css */ | |
| body { | |
| font-family: Arial, sans-serif; | |
| background-image: url('../back1.jpg'); /* Change the path to your image */ | |
| background-size: cover; | |
| background-repeat: no-repeat; | |
| background-attachment: fixed; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| .container { | |
| max-width: 800px; | |
| margin: 0 auto; | |
| padding: 20px; | |
| } | |
| h1 { | |
| color: #333; | |
| } | |
| img { | |
| max-width: 100%; | |
| height: auto; | |
| display: block; | |
| margin: 20px auto; | |
| } | |
| ul { | |
| list-style: none; | |
| padding: 0; | |
| } | |
| li { | |
| margin-bottom: 20px; | |
| padding: 10px; | |
| border: 1px solid #ccc; | |
| background-color: #fff; | |
| box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | |
| } | |
| h2 { | |
| margin-top: 20px; | |
| color: #555; | |
| } | |