@charset "UTF-8";
h1, h2, h3 {
  font-weight: normal;
}

h1 {
  font-size: 43.2pt;
}

h2 {
  font-size: 28.8pt;
}

h3 {
  font-size: 21.6pt;
}

html {
  background: #234;
  color: #fff;
  font-family: "FreeSerif", "Iowan Old Style", "Apple Garamond", Georgia, "Times New Roman", "Droid Serif", serif;
  font-size: 18pt;
}

body {
  margin: 0;
}

* {
  box-sizing: border-box;
}

a {
  color: #adf;
}

a:visited {
  color: #abc;
}

a:hover {
  color: #def;
}

main {
  width: 75%;
  max-width: 65ch;
  margin: auto;
  padding: 1em 2em;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.full-bleed img {
  width: 100vw;
  height: auto;
}

.movie-showtime-summary {
  font-size: 75%;
}
.movie-showtime-summary:before {
  content: " » ";
}

ul.main-nav {
  margin-left: 0;
  padding-left: 0;
  text-align: right;
}
ul.main-nav li {
  display: inline;
  list-style: none;
  margin-right: 0.25em;
  padding: 0.25em;
}
ul.main-nav li:hover {
  background: #456;
  border-radius: 6px;
}
ul.main-nav li:hover a {
  color: #fff;
}
ul.main-nav li.nav-current-page {
  background: #456;
  border-radius: 6px;
}

p.upcoming-movie-excerpt {
  margin-left: 2em;
}

.article-date {
  font-size: 0.95rem;
  font-style: italic;
}

footer {
  margin: auto;
  text-align: center;
  margin-bottom: 0;
}
footer ul li {
  display: inline;
}
footer ul li + li::before {
  content: " | ";
}

.hide-me {
  color: #234;
  font-size: 1px;
}

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #111a22;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #FFF;
  max-height: 1.5rem;
  padding: 0.25em;
  margin: 0;
}

h1.logo {
  font-size: 1rem;
  margin-left: 1em;
}
h1.logo a {
  text-decoration: none;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu > li {
  margin: 0;
  overflow: hidden;
}
.menu > li a {
  text-decoration: none;
  padding: 0.5em;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: "";
  margin-top: -8px;
}

.menu-button::after {
  content: "";
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 800px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #111a22;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}
@media screen and (max-width: 992px) {
  ul.showtime-list li {
    display: block;
  }
  ul.showtime-list li + li::before {
    content: none;
  }
  footer {
    text-align: left;
  }
  footer ul li {
    display: block;
  }
  footer ul li + li::before {
    content: none;
  }
  main {
    width: 95%;
    max-width: 95%;
  }
  blockquote.upcoming-movie-excerpt {
    margin-left: 0;
  }
  .movie-showtime-summary {
    font-size: 1em;
  }
}
@media screen and (max-width: 800px) {
  body {
    font-size: 18px;
  }
  h1 {
    font-size: 1.75em;
  }
  h2 {
    font-size: 1.5em;
  }
  h3 {
    font-size: 1.25em;
  }
  main {
    max-width: 95%;
  }
}

/*# sourceMappingURL=styles.css.map */
