body {
    color: white;
    background-color: #1a1a1a;
    font-family: Arial, sans-serif;
    font-family: "Nunito", sans-serif;
    font-family: 'Noto Sans', sans-serif;

}

a {
    color: yellow;
}

.movie {
    color: greenyellow;
}

.series {
    color: cyan;
}


/* Border colours */
img {
    border: 5px solid black;
    cursor: pointer;
}

img.watched {
    border: 5px solid grey;
}

img.canwatch {
    border: 5px solid greenyellow;
}

img.canwatchseries {
    border: 5px solid cyan;
}

img.nowatch {
    border: 5px solid red;
}


/* Dim watched movies and ones we can't watch yet */
.container .nowatch, .container .watched {
    opacity: 0.6;
}


/* Hover to see prerequisites */
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: black;
    margin: 5px;
    cursor: pointer;
}

.container:hover {
    opacity: 1.0;
}

.container:hover .overlay {
    opacity: 0.8;
}

.text {
    color: white;
    font-size: 20px;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.container {
    height: 225px;
    width: 400px;
    float: left;
    margin: 25px;
    position: relative;
}

#content {
}

#end {
    clear: left;
}

/* Mobile */
/* CANCEL
@media only screen and (max-device-width: 480px) {
    .container {
        width: 94%;
        height: 94%;
    }

    img {
        width: 100%;
    }
}
*/