/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
}


/* Video Gallery Container */
.video-gallery {
    text-align: center;
    max-width: 100%;
    margin: auto;
}

/* Video Slides */
.video-slide video {
    background-color: #000;
    width: 400px; /* Adjust width */
    height: 400px; /* Adjust height */
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Video Controls */
.video-controls {
    margin-top: 10px;
}

.video-controls button {
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    padding: 8px 16px;
    margin: 5px;
    font-size: 16px;
    cursor: pointer;
}