File size: 395 Bytes
289d6c3 c6608fe |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 20px;
}
.video-grid {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.video-grid video {
width: 320px;
height: 180px;
object-fit: cover;
border: 2px solid #ccc;
border-radius: 8px;
}
|