/* Custom css style voor youtube media video's
   In div class 'col-md-8 page-content'
   Gebruik div class 'vid_style' om de video heen
   VB: <div class="vid_style">
         <embed></embed>
       </div>
*/

/* Schalen van embed video als Youtube */
.vid_style {
    width: 70%;
    margin: 0 auto;
}

/* Mobiele weergave met max-width: 767px */
@media only screen and (max-width: 767px) {
    .vid_style {
        width: 80%;
        margin: 0 auto;
    }
}

