body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

#video-container {
    display: flex;
    height:350px;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 10px;
}

.video {
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px; /* Changed from 5px to 10px */
    margin: 15px; /* Increased distance between cards */
    padding: 10px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.video img {
    width: 100%;
    border-radius: 20px; /* Update for images to match card radius */
}

.video h3 {
    font-size: 1.2em;
    margin: 10px 0;
}