Spaces:
Sleeping
Sleeping
| *{ | |
| font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; | |
| color: #171717; | |
| background-color: antiquewhite; | |
| } | |
| header { | |
| text-align: center; | |
| } | |
| .grid-container { | |
| display: grid; | |
| grid-template-columns: repeat(3, 1fr); | |
| gap: 20px; | |
| } | |
| .card { | |
| border: 3px solid #f6a503; | |
| border-radius: 8px; | |
| overflow: hidden; | |
| } | |
| .card img { | |
| width: 100%; | |
| height: 600px; | |
| display: block; | |
| } | |
| .card-content { | |
| padding: 20px; | |
| } | |
| .card-content h2 { | |
| margin-top: 0; | |
| } | |
| .card-content h4 { | |
| margin-bottom: 10px; | |
| } | |
| .card-content button { | |
| background-color: #f6a503; | |
| color: #000000; | |
| border: none; | |
| padding: 10px 20px; | |
| border-radius: 5px; | |
| cursor: pointer; | |
| transition: background-color 0.3s ease; | |
| } | |
| .card-content button:hover { | |
| background-color: #ffffff; | |
| } | |