/* this is for my video gallery */
*{
    margin:0;
    padding:0;
}

/* find a better background color, and keep consistent with other pages */
body {
    background: #FFFFFF; // Columbia Blue
}

.container {
    width: 100%;
}

.container h1 {
    padding: 60px 0;
    color: #FFF;
    font-size: 44px;
    text-align: center;
}

.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.col {
    flex-basis: 50%;
    min-width: 250px;
}

.feature-img {
    margin: auto;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.small-img-row {
    display: flex;
    //background: #efefef;
    background: #FFFFFF;
    margin: 20px 0;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;
    width: 85%;
}

.small-img{
    position: relative;
}

.small-image img {
    width: 150px;
}

.small-img-row p {
    margin-left: 20px;
    //color: #707070; // some sort of slate gray
    color: #000000;
    line-height: 22px;
    font-size: 15px;
}

.play-btn{
    width:40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.small-img .play-btn{
    width: 25px;
}

/* changed position from absolute. This allows the frame to move within browser location */
.video-player{
    width: 80%;
    position: fixed;
    left: 50%;
    top:50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    display: none;
}

video:focus{
    outline: none;
}

.close-btn{
    position: absolute;
    top: 10px;
    right:10px;
    width: 30px;
    cursor: pointer;
}
