﻿
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.video {
    margin: 10px;
    cursor: pointer;
    border: 15px solid #f0f0f0;
    width: 350px;
    text-align: justify;
    padding: 8px;
}

    .video img {
        width: 100%;
        max-width: 300px;
        height: auto;
        border: 2px solid #ddd;
        border-radius: 8px;
    }

#video-modal {
    display: none;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.modalVid-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: auto;
}

.title {
    margin: 0;
    padding: 0px;
    font-family: 'Times New Roman', Times, serif;
    line-height: 36px;
    font-size: 24px;
    font-weight: 600;
    color: #181818;
}

    .title:hover {
        color: #b88c34;
    }

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    font-weight: 600;
    background-color: gray;
    border: 1px solid #f5f5f5;
}

.prev-btn,
.next-btn {
    background-color: #343a40;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 5px;
    font-size: 16px;
}

    .prev-btn:hover,
    .next-btn:hover {
        background-color: #b88c34;
    }

.videoDate {
    margin: 0;
    padding: 0px;
    font-family: 'Times New Roman', Times, serif;
    line-height: 36px;
    font-size: 16px;
    font-weight: 600;
    color: #b88c34;
}

    .videoDate:hover {
        color: #181818;
    }

.MultimediaTitle {
    margin: 0;
    padding: 5px;
    font-family: 'Times New Roman', Times, serif;
    line-height: 36px;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    border: 10px solid #f6f6f6;
    background-color: #f0f0f0;
}
    .MultimediaTitle h1 {
        margin: 0;
        padding: 5px;
        font-family: 'Times New Roman', Times, serif;
        line-height: 36px;
        font-size: 30px;
        font-weight: 600;
        text-align: center;
        border: 10px solid #f6f6f6;
        background-color: #f0f0f0;
    }