.header {
    height: 90%;
    height: 90vh;
}
/*.navbar {*/
    /*background: black;*/
/*}*/
.header-img {
    left: -2px;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    position: absolute;
    height: inherit;
    background: url(../img/TheVillageMovieB&W.jpg) no-repeat center center scroll;
    background-size: 289%;
    background-position-x: -156px;
    filter: blur(1px);
}

@media screen and (max-width: 375px) {
    .header-img {
        background-size: 337%;
        background-position-x: -205px;
    }
}
@media screen and (min-width: 426px) {
    .header-img {
        background-size: 214%;
        background-position-x: -190px;
    }
}


.header-text {
    margin-top: 40%;
    margin-top: 40vh;
    /* display: table-cell; */
    /* vertical-align: middle; */
    text-align: center;
    background-clip: content-box;
    background-color: rgba(0,0,0,0.5);
}

.header-text h1 {
    padding-top: 30px;
    padding-bottom: 30px;
    font-family: 'Open Sans', sans-serif;
    /*font-family: 'Josefin Sans', sans-serif;*/
    font-size: 3rem;
    color: white;
}

.disabled-link {
    pointer-events: none;
    cursor: default;
    opacity: .3;
}

.disabled-link:hover {

}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
/*#main {*/
    /*transition: margin-left .5s;*/
    /*padding: 20px;*/
/*}*/


section {
    width: 100%;
    display: table;
    margin: 0;
    max-width: none;

    height: 100%;
    height: 100vh;
}

body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}
a {
    text-decoration: none;
}
footer {
    color: white;
    background: rgb(172, 172, 172);

    height: 50%;
    height: 50vh;
}
.copyright {
    padding-top: 40%;
    padding-top: 40vh;
    display: inline-block;
    text-align: center;
    float: none !important;
    width: 100%;
}
.copyright .material-icons {
    font-size: 18px;
    position: relative;
    top: 3px;
}

.container-flex {
    display: flex; /* or inline-flex */
    flex-flow: column;
}

#nav_links {
    background-color: black;
}

/*TODO: Change the brightness not to effect the text*/
.item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;  /* Or whatever */
    height: 300px; /* Or whatever */
    margin: auto;  /* Magic! */
    filter: brightness(73%);
    -webkit-filter: brightness(73%);
}
/*TODO: Something about this*/
@media screen and (min-width: 480px) {
    .container-flex {
        flex-flow: row wrap;
    }
    .item {
        flex: 1 0 50%;
    }
}
.item-text {
}

.item-text h1 {
    font-family: 'Josefin Sans', sans-serif;
    color: white;
}
#events {
    background: url(../img/events.png);
    background-size: cover;
    background-position-x: center;
}

#movies {
    background: url(../img/movies.jpg);
    background-size: cover;
    background-position-x: center;
}

#games {
    background: url(../img/games.jpg);
    background-size: cover;
    background-position-x: center;
}

#blog {
    background: url(../img/blog_ed.svg);
    background-size: cover;
    background-position-x: center;
    background-position-y: -120px;
}


/******************************
*
* Side Nav Bar CSS
*
*******************************/
nav {
    height: 0;
}

#menu a
{
    text-decoration: none;
    color: #232323;
    transition: color 0.3s ease;
}

#menu a:hover
{
    color: tomato;
}

#menuToggle
{
    display: block;
    position: relative;
    top: 30px;
    left: 30px;
    width: fit-content;
    z-index: 1;

    -webkit-user-select: none;
    user-select: none;
}

#menuToggle input
{
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;

    cursor: pointer;

    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */

    -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: white;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.3s cubic-bezier(0.77,0.2,0.05,1.0),
    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.55s ease;
}

#menuToggle span:first-child
{
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
    transform-origin: 0% 100%;
}

/*
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: white;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
    opacity: 1;
    transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
    position: absolute;
    width: 210px;
    margin: -100px 0 0 -50px;
    padding: 50px;
    padding-top: 125px;
    height: 100%;
    height: 100vh;
    background: #9f9f9f;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */

    transform-origin: 0% 0%;
    transform: translate(-100%, 0);

    transition: transform 0.3s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
    padding: 10px 0;
    font-size: 22px;
}

/*
 * And let's fade it in from the left
 */
#menuToggle input:checked ~ ul
{
    transform: scale(1.0, 1.0);
    opacity: 1;
}
#menuToggle input:checked + #menuToggle {
    position: fixed;
}