.video-front
{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index:5;
    background: rgba(0,0,0,0.2);
}
.video-playbutton
{
    -webkit-border-radius: 9999px;
    -moz-border-radius: 9999px;
    border-radius: 9999px;
    border:2px solid white;
    color:white;
    background-color:rgba(0,0,0,0.2);
    height:100px;
    width:100px;
    text-align: center;
    display:block;
    transition:0.5s all ease;
    margin:0 auto;
}
.video-playbutton:hover
{
    cursor:pointer;
    color:black;
    background-color:rgba(255,255,255,1);
}