/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.embed-container { 
        position: relative; 
        padding-bottom: 56.25%;
        overflow: hidden;
        max-width: 100%;
        height: auto;
} 

.embed-container iframe,
.embed-container object,
.embed-container embed { 
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
}

/*Add a Container Around Embeds*/
add_filter('embed_oembed_html', 'dgtlnk_wp_embed', 99, 4);
function dgtlnk_wp_embed($html, $url, $attr, $post_id) {
	return '<div class="embed-container">' . $html . '</div>';
}