main{
    padding: 0;
    max-width: unset;
    display: unset;
    min-height: unset;
}
video{
    display: block;
    width: 100vw;
    height: 100vh;
}
video::-webkit-media-controls-fullscreen-button {
    display: none;
}

/* Videolist */
#videolist {
    color: white;
    text-transform: uppercase;
    display: grid;
    grid-template-columns: auto 510px 510px auto;
    width: 100vw;
    height: 100vh;
    justify-items: center;
    align-items: center;
}
#videolist h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}
#videolist p {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
}
#videolist .play-button {
    display: inline-block;
    width: 70px;
    height: 70px;
    transition: 0.5s;
}
#videolist .play-button svg {
    overflow: visible;
}
#videolist .play-button .polygon {
    fill: #1E3E34;
    transition: transform 0.5s, fill 0.5s;
    transition-timing-function: cubic-bezier(0.7, 0.01, 0.37, 1);
    transform-origin: 50% 50%;
}
#videolist .play-button polygon {
    fill: white;
}
#videolist .card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 370px;
    width: 100%;
    height: 200px;
    padding: 20px;
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.3);
    background-size: cover;
    cursor: pointer;
    margin: 0 100px 60px 0;
}
#videolist .card:before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
}
#videolist .card .card__content {
    z-index: 1;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: grid;
    justify-content: center;
    align-content: center;
}
#videolist .card .card__content .card__content--description {
    position: absolute;
    bottom: 20px;
    right: 0;
    margin-right: -80px;
    text-align: left;
    max-width: 175px;
    pointer-events: none;
}