body{
    font-family: 'Roboto', sans-serif light;
    color: white;
    font-weight: 100;
    padding: 0;
    margin: 0;
    background: #161616;
    z-index: 0;
    overflow: hidden;
}

.sec_back{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}
.container_back{
    margin: 20px 20px;
}

.back a{
    font-size: 20px;
    text-transform: uppercase;
    color: white;
}
.back a:hover{
    color: deepskyblue;
    text-decoration: none;
}


.main_block{
    position: relative;
    height: 100vh;
    flex-direction: column;
}
.row{
    margin: 0 0;
}

.playlist{
    font-family: 'Roboto', sans-serif bold;
    color: white;
    font-weight: 800;
    font-size: 60px !important;
    display: flex;
    opacity: 1;
    position: relative;
    /*justify-content: space-between;*/
    justify-content: center;
    /*align-items: center;*/
    text-align: center;
    top: 30%;
    left: 50%;
    height: auto;
    width: 100%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    background: #cc1111;
}

.clip{
    position: relative;
    height: 100vh;
    flex-direction: column;
}

.clip_title{
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;

    height: 560px;
    width: 960px;

    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-size: 25px;
    font-family: "Montserrat ExtraBold", sans-serif;
    color: white;
}

.video{
    height: 100%;
    width: 100%;
    display: block;
    position: relative;
}

.vimg{
    position: absolute;

    padding: 0 0;
    margin: 0 0;

    height: auto;
    width: 100%;
    max-width: 960px;
    max-height: 540px;
    min-width: 320px;
    min-height: 186px;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.link{
    display: flex;
    opacity: 1;
    position: relative;
    justify-content: space-between;
    /*align-items: center;*/
    top: 50%;
    left: 50%;
    height: 150px;
    width: 350px;
    transform: translate(-50%, -50%);
    z-index: 2;
    /*background-color: #94b24d;*/
}

.link img{
    position: relative;
    height: 150px;
    width: 150px;
}

@media screen and (max-width: 959px){
    .clip_title{
        height: 290px;
        width: 480px;
        font-size: 18px;
        font-family: "Montserrat SemiBold", sans-serif;
    }
    .link{
        height: 80px;
        width: 180px;
    }
    .link img{
        height: 80px;
        width: 80px;
    }
}

@media screen and (max-width: 768px){
    .clip_title{
        height: 195px;
        width: 320px;
        font-size: 15px;
        font-family: "Montserrat", sans-serif;
    }
    .link{
        height: 50px;
        width: 110px;
    }
    .link img{
        height: 50px;
        width: 50px;
    }
}