/* ============================== */
/* ! Layout for desktop version   */
/* ============================== */

html { overflow-y: scroll; } /* force vertical scrollbar to fix 'jump' on centered layout */

body {
    font:13px/1.5em skolar,serif;
    *font-size:small;  /* hack retained to preserve specificity */
    background: #f7f3e8;  
}

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:2em 0; padding:0; }	

h1 {
  font-family: futura-pt,sans-serif;
  font-size: 60px;
  margin-top: 50px;
  margin-bottom: 25px;
  text-shadow: #444 2px 2px 1px;
}

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

.row {
    margin-top: 15px;
    margin-bottom: 15px;
}

.top-bar {
    background-color: rgba(167, 189, 91, 1.0);
    color: #f7f3e8;
    padding-bottom: 10px;
}

.films img {
    border: 1px solid rgb(0, 0, 0);
    padding: 5px;
}

.film-thumb {
    position: relative;
}
.film-thumb a img {
    opacity: 0.5;
}
.film-thumb a:hover img {
    opacity: 1.0;
}
.film-thumb a .year {
    display: block;
    position: absolute;
    bottom: 20px;
    right: 10px;
    color: #f7f3e8;
    text-shadow: #444 2px 2px 1px;
}
.film-thumb a:hover .year {
    opacity: 0.0;
}
.year p {
    font-size: 30px;
    font-weight: bold;
}
.film-thumb a .title {
    display: block;
    position: absolute;
    width: 100%;
    top: 10px;
    left: 0;
    color: #f7f3e8;
    opacity: 0;
    text-shadow: #000 1px 1px 1px;
    font-family: futura-pt, sans-serif;
}
.film-thumb a:hover .title {
    opacity: 1.0;
    background-color: rgba(167, 189, 91, 1.0);
}
.title p {
    font-size: 19px;
    margin-left: 10px;
    padding: 5px 0;
}


/* ============================= */
/* ! Layout for mobile version   */
/* ============================= */

@media handheld, only screen and (max-width: 767px) {

    body {
            
    }

}


/* ========================================== */
/* ! Provide higher res assets for iPhone 4   */
/* ========================================== */

@media only screen and (-webkit-min-device-pixel-ratio: 2) { 


}