.vod-container{
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
}

.vod-locker{
    border-radius: 0.2em;
    border: #ccc solid 1px;
    margin: 1em;
    padding: 1em;
    box-shadow: 4px 10px 60px 2px rgba(0,0,0,0.05);
    cursor: pointer;
    text-decoration: none;
    color: rgb(53, 53, 53);
    max-width: 25em;
    width: 25em;
}

.vod-locker:hover{
    color: rgb(53, 53, 53);
    scale: 1.1;
    box-shadow: 4px 10px 60px 2px rgba(0,0,0,0.15);
    transition: 0.1s ease-in;
}

.vod-locker h1{
    text-transform: uppercase;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.vod-locker p{
    margin: 0;
}

.vod-title-container{
    margin:1em;
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
}