@import url("http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900italic,900' rel='stylesheet' type='text/css");
body {
    font-family: "Times New Roman", cursive;
    color: black;
    width: 100%;
    margin: 0;
    margin-bottom: 100px;
    background-color: rgb(237, 237, 237);

}

.logo_small{
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo_small_text {
    margin-top: 80px;
}

a:link {
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    position: absolute;
    left: 10;
    margin: 0;
    padding: 15;
}

nav ul li a {
    padding-right: 20px;
}

a {
    color: black;
    transition: all 0.2s linear;
    }
    a:hover, a:focus {
        color: rgb(255, 0, 0);
    }

.videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;;
    align-items: center;
    margin: 20px auto;
    margin-top: 75px;
    margin-bottom: 100px;
}

.small_video {
    width: 350;
}



/* (A) RESPONSIVE IMAGE */
.layer1 video { width: 100%; }

.imageBox {
  max-width: 500px; /* optional */
  position: relative; /* required for (b1) */
  margin: 10px;
}

.layer2 {
    /* (B1) COVER OVER ENTIRE IMAGE */
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(237, 237, 237, 1);
    font-size: 1rem;
    display: flex; 
    justify-content: center; 
    align-items: center;
    text-align: center;
}

/* (C) ONLY SHOW CAPTION ON HOVER */
.layer2 {
    visibility: none; opacity: 0;
    transition: opacity 0.3s;
}

.layer2 a p {
    margin: 30px;
}

.imageBox:hover .layer2 {
    visibility: visible; opacity: 1;
}


@media only screen and (max-width: 640px) {

    nav ul {
        margin-top: 12em;
        position: flex;
        left: 50%;
        transform: translate(-50%, -50%);

    }

    nav li {
        margin: 0.05em 0;
        font-size: 1.5rem;
      }

    #logo_small_text {
        width: 300px;
        
    }

}

footer ul {
    list-style: none;
    display: flex;
    position: fixed;
    bottom: 0;
    margin: 0;
    padding: 17;
    font-size: 14;
    font-family:Arial, Helvetica, bold, sans-serif;
    font-variant-caps:all-small-caps;
}

footer ul li {
    padding-right: 5px;
}


*{
    margin: 0;
    padding: 0;
}

body {
    background: rgb(237, 237, 237);
}

.container{
    width: 60%;
    margin: 80px auto;

}

.row{
    justify-content: center;
    align-items: center;
    text-align: center;
}

.feature-img{
    width: 100%;
    margin: auto;
    position: relative;
    overflow: hidden;
}

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

.video-player {
    width: 80%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.video:focus{
    outline: none;
}

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

.col p{
    margin-top: 5px;
    text-align: left;
}

.headline-video{
    font-weight: bold;
}