@charset "utf-8";

/* Styles for videos class */
#training-videos {
    width: 100%;
    text-align: center;
    max-width: 1730px;
    margin: auto;
    padding-bottom: 40px;
}

.videos {
    /* Video container styles */
    display: inline-block;
    background-color: #000;

    /* Border Styles */
    border: 5px solid #000;
    box-shadow: #000 5px 5px 3px;
    margin: 2% 3% 2% 3%;
    border-radius: 5px;
    height: 189px;
}

.videos:hover {
    transition: all .2s;
    transition-delay: 1.1s;
    transform: scale(1.3);
}

/* Styles for all video tags */
video {
    height: 100%;
}
