@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;
    font-weight: 100;
    color: rgb(167, 167, 167);
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: black;

}

.bg-video{
    position:absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 95vh;
}

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

#logo_small_text {
    margin-top: 80px;
}

a:link {
    text-decoration: none;
    color: rgb(167, 167, 167);
}

a:visited {
    text-decoration: none;
    color: grey;
}

a:active {
    text-decoration: none;
    color: grey;
}

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

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

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;
}

a {
    color: rgb(167, 167, 167);
    transition: all 0.5s linear;
    }
    a:hover, a:focus {
    color: rgb(255, 0, 0);
    }
  
.container {
    margin: 50px auto;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.text {
    width: 500px;
    text-align: center;
}

.videos {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: center;
    text-align: center;
}

video {
    width: 300;
}

.video_id {
    display: none;
    border: 1px solid #000;
    height: 30px;
    width: 290px;
    margin-left: 10px;
    justify-content: center;
    align-content: center;
    text-align: center;
  }
  
#video1:hover+.video_id {
    display: block;
  }

#video2:hover+.video_id {
    display: block;
}

.documentaries-text{
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin: 20px 0;
    margin-top: 75px;
    font-size: 30px;

}

.container-about-text{

    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin: 20px 0;
    margin-top: 75px;
    margin-left: 20%;
    margin-right: 20%;

}

.about-text{
    text-align: left;


}

@media (min-aspect-ratio: 16/9){
    .bg-video {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9){
    .bg-video {
        width: auto;
        height: 100%;
    }
}

@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;
        
    }
    
}