Spaces:
Running
Running
| /* styles.css */ | |
| .video-container { | |
| display: flex; | |
| flex-wrap: wrap; | |
| justify-content: center; | |
| } | |
| .video { | |
| width: 300px; | |
| height: 300px; | |
| margin: 10px; | |
| background-color: #f2f2f2; | |
| border-radius: 10px; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| } | |
| .video img { | |
| width: 200px; | |
| height: 200px; | |
| object-fit: cover; | |
| border-radius: 50%; | |
| } | |
| .video h2 { | |
| margin-top: 10px; | |
| font-size: 18px; | |
| } | |
| .video p { | |
| margin-top: 5px; | |
| font-size: 14px; | |
| } | |
| .video button { | |
| margin-top: 10px; | |
| padding: 5px 10px; | |
| background-color: #007bff; | |
| color: #fff; | |
| border: none; | |
| border-radius: 5px; | |
| cursor: pointer; | |
| } | |
| .video button:hover { | |
| background-color: #0056b3; | |
| } |