body{
    background-image: linear-gradient(to bottom, #BF926B, #733822);
}
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.video-section {
    text-align: center;
    margin-bottom: 40px;
    background-color: #ccc;
    border-radius: 10px;
    border-color: #000;
    border-width: 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.video-section h2{
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.video {
    width: 100%;
    max-width: 853px; 
    height: 500px; 
    border: 2px solid #ccc;
}

.about-section {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.mvv {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.mvv-item {
    width: 30%;
    padding: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.mvv-item h3 {
    margin-bottom: 10px;
}
.about-section p {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: justify;
}
.gallery-section {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.gallery-table {
    width: 100%;
    border-spacing: 10px;
}
.gallery-table img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .video {
        width: 100%;
        max-width: 100%; 
    }
    .mvv {
        flex-direction: column;
        align-items: center;
    }
    .mvv-item {
        width: 100%;
        margin-bottom: 20px;
    }
    .gallery-table {
        display: block; 
    }
    .gallery-table tr {
        display: block; 
    }
    .gallery-table td {
        display: block; 
        width: 100%;    
        margin-bottom: 20px; 
    }
    .gallery-table img {
        width: 100%; 
    }
}
