.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 90%;
    margin-top: 20px;
    margin-left: 5%;
    margin-right: 5%;
    padding-top: 1rem;
}

.gallery img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 2px solid rgb(36, 141, 42);
}

.h2-box {
    border-bottom: 1px solid rgb(220, 21, 53);
    width: 90%;
    margin: auto;
    padding-top: 5rem;
}

h2 {
    margin-bottom: 0.5rem;
    color: rgb(220, 21, 53);
}

details {
    width: 90%; 
    text-align: justify;
}

h3 {
    width: 90%;
    margin-left: 5%;
    text-align: center;
    padding-top: 4rem;
}
.video_section video {
    width: 80%; 
    margin-left: 10%; 
    padding-top: 1rem;
    height: auto;
}
.video_section aside {
    padding-top: 1rem;
    margin-left: 10%;
}


/* Responsive */

 @media (min-width: 0px) and (max-width: 767px) {
    .gallery img {
        width: 400px;
        height: 400px;
        object-fit: cover;
        border: 2px solid rgb(36, 141, 42);
    }
    .gallery {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .video_section {
        width: 100%;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 2rem;
    }

    .video_section video {
        width: 90%;
        height: auto;
        margin: 1rem auto;
    }

    .video_section aside {
        font-size: 0.9rem;
        margin-left: 5%!important;
    }
    .video_section details {
        width: 100%;
    
    }
 }

 @media (min-width: 768px) and (max-width: 1024px) {

 }
