body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5; /* Set a light background color */
}

h1, p {
    text-align: center;
    color: #333; /* Set the heading color */
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px; /* Add padding to the video gallery */
}

.video-item {
    width: 100%;
    max-width: 300px;
    margin: 10px;
    background-color: #fff; /* Set a white background color for the video items */
    border-radius: 8px; /* Add rounded corners to the video items */
    overflow: hidden; /* Hide any overflow content */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a subtle box shadow for a card-like effect */
    transition: transform 0.3s ease-in-out; /* Add a smooth transition effect */
}

.video-item:hover {
    transform: scale(1.05); /* Enlarge the video item on hover */
}

video {
    width: 100%;
    height: auto;
    display: block; /* Ensure video is treated as a block-level element */
}

@media screen and (min-width: 768px) {
    .video-item {
        width: 45%; /* Adjust the width for larger screens */
    }
}
