
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.video-container{
    margin-left: 50px;
    width: 1600px;
    height: 620px;
    display: flex;   
}

.video-container .videos{
    width: 15%;
    padding: 10px 0 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-container .videos video{
    width: 95%;
    height: 200px;
    margin: 10px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.2s;
}

.video-container .videos video:nth-child(1){
    margin-top: 0;
}

.video-container .videos video:hover,
.video-container .videos .active{
    transform: scale(1.06);
}

.video-container .main-video{
    width: 80%;
    padding: 10px;
}

.video-container .main-video video{
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

iframe{
    margin-left: 50px;
}