@font-face {
  font-family: "RobotoCondensed";
  font-style: normal;
  font-weight: 400;
  src: url("/font/roboto-condensed.eot");
  src: local(""),
       url("/font/roboto-condensed.eot?#iefix") format("embedded-opentype"),
       url("/font/roboto-condensed.woff2") format("woff2"),
       url("/font/roboto-condensed.woff") format("woff"),
       url("/font/roboto-condensed.ttf") format("truetype"),
       url("/font/roboto-condensed.svg#RobotoCondensed") format("svg");
}

a {
    color: #ffffff;
    text-decoration: none;
}

a:link {
    color: #ffffff;
    text-decoration: none;
}

a:visited {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
    text-decoration: none;
}

a:active {
    color: #ffffff;
    text-decoration: none;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: #000000;
    background-color: rgba(0, 0, 0, 1);
    color: #ffffff;
    font-family: RobotoCondensed, Arial, sans-serif;
    font-size: 20px;
    text-align: center;
    padding: 0px;
    overflow-x: hidden;
    margin: 0 auto;
}

img {
    border: 0px;
}

#reel {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
}

#container {
    width: 100%;
    height: 100%;
    background-color: #000000;
    background-color: rgba(0, 0, 0, 1);
    color: #ffffff;
    text-align: center;
    margin: 0 auto;
}

#content {
    width: 100%;
    background-color: #000000;
    background-color: rgba(0, 0, 0, 0);
    font-family: RobotoCondensed, Arial, sans-serif;
    font-size: 20px;
    text-align: center;
    text-shadow: 1px 1px #000000;
    margin: 0 auto;
    margin-top: 30px;
    position: absolute;
}

#description {
    width: 650px;
    font-family: RobotoCondensed, Arial, sans-serif;
    font-size: 30px;
    text-align: center;
    text-align: justify;
    text-shadow: 1px 1px #000000;
    margin: 0 auto;
    margin-top: 30px;
}

#posters {
    width: 860px;
    margin: 0 auto;
    margin-top: 35px;
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
}

.poster {
    width: auto;
    height: 300px;
    border-radius: 5px;
    margin-right: 15px;
    transition: all 100ms ease-in-out;
}

.poster:hover {
    transform: scale(1.02);
}

.logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-left: 5px;
    margin-right: 5px;
}

.shadow {
    -webkit-filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.75));
    filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.75));
}

#contact {
    font-size: 28px;
    text-align: center;
    margin: 0 auto;
    margin-top: 35px;
    padding-bottom: 50px;
}

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

    .logo {
        max-width: 270px;
    }

    #description {
        width: 280px;
        font-size: 21px;
        text-align: center;
        margin-top: 10px;
    }

    #posters {
        width: 100%;
        flex-direction: column;
    }

    .poster {
        height: 350px;
        margin-right: 0px;
        margin-bottom: 15px;
    }

    #contact {
        margin-top: 0px;
    }

    #contactimg {
        width: 200px;
    }
}