#VideosRow{
    height: 140px;
    width: 100%;
    display: flex;
    margin-top: 5px;
}
#VideosRow div{
    height: 100%;
    width: 200px;
    margin-right: 5px;
    margin-left: 5px;
    transition: transform var(--transitionBack);
    cursor: pointer;
}
#VideosRow div:hover{
    transform: translate(0, -5px);
    transition: transform var(--transitionTo);
}
#VideosRow div img{
    width: 100%;
    border-radius: 5px;
}
#VideosRow div p{
    margin-top: 5px;
}