<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* YOUTUBE -----------------------------------------*/
.videos {	
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: all 200ms ease-out;
    cursor: pointer;
}
 
.videos .play {
    background: url("../images/play2.png") no-repeat center center;
    background-size: 64px 64px;
    position: relative;
    height: 100%;
    width: 100%;
    opacity: .6;
    filter: alpha(opacity=80);
    transition: all 0.2s ease-out;
}
 
.videos .play:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    
}
</pre></body></html>