:root {
  --background: #1d1d1d;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

p {
  margin-bottom: 10px;
  font-family: Open Sans, sans-serif;
  font-weight: 300;
}

a {
  color: var(--background);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.body {
  background-color: var(--background);
  color: #cfcfcf;
}

.logo-heading {
  background-image: url('../images/New-Logo-Beta.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 50px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.primary-film-heading {
  float: left;
  clear: none;
  font-family: Open Sans, sans-serif;
  font-size: 42px;
  line-height: 50px;
}

.primary-film-links {
  float: right;
  height: 50px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.film-social-link {
  width: 50px;
  height: 50px;
  padding-top: 0;
}

.film-social-link.youtube {
  background-image: url('../images/noun_youtube_897674-2.png');
  background-position: 50%;
  background-size: 150%;
}

.film-social-link.youtube:hover {
  background-image: url('../images/noun_youtube_897674-3.png');
}

.film-social-link.imdb {
  background-image: url('../images/IMDBgrey.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
}

.film-social-link.imdb:hover {
  background-image: url('../images/iu.png');
}

.image {
  height: 100%;
}

.clearfix {
  clear: both;
  height: 0;
}

.film-description {
  text-align: justify;
  padding-left: 60px;
  padding-right: 60px;
  font-size: 22px;
  line-height: 30px;
}

.separator {
  opacity: .87;
  background-image: url('../images/Seperator.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 50px;
  margin-top: 75px;
  margin-bottom: 75px;
}

.poster {
  opacity: .5;
  filter: saturate(0%);
  width: 100%;
  padding: 10px;
  transition: all .2s;
  position: relative;
}

.poster:hover {
  opacity: 1;
  filter: saturate();
}

.coming-soon {
  text-align: center;
  position: static;
  inset: 0%;
}

.coming-soon-container {
  background-color: var(--background);
  opacity: 1;
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: Open Sans, sans-serif;
  font-weight: 300;
  display: flex;
  position: absolute;
  inset: 0%;
}

.coming-soon-container:hover {
  opacity: 0;
}

.footer {
  background-color: #c9c9c9;
  margin-top: 100px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  background-image: url('../images/New-Logo-Beta.png');
  background-position: 0 0;
  background-size: cover;
  width: 200px;
  height: 200px;
  margin-right: 20px;
}

.footer-paragraph {
  color: #000;
}

.footer-container {
  align-items: center;
  display: flex;
}

.red-link {
  color: #fa5050;
  text-decoration: none;
}

.red-link:hover {
  text-decoration: underline;
}

.centered {
  text-align: center;
}

.paragraph-2 {
  text-align: justify;
  padding-left: 60px;
  padding-right: 60px;
  font-size: 22px;
  line-height: 32px;
}

.dark-heading {
  color: var(--background);
  font-family: Open Sans, sans-serif;
  font-weight: 600;
}

.posters {
  margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .film-description {
    padding-left: 0;
    padding-right: 0;
  }

  .coming-soon {
    font-size: 25px;
    line-height: 30px;
  }

  .paragraph-2 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .primary-film-heading {
    font-size: 27px;
  }

  .film-description {
    font-size: 18px;
    line-height: 22px;
  }

  .footer, .padded-sides-mobile {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 479px) {
  .primary-film-heading {
    float: none;
    text-align: center;
    font-size: 25px;
    line-height: 30px;
  }

  .primary-film-links {
    text-align: center;
    width: 100%;
  }

  .film-description {
    font-size: 14px;
    line-height: 18px;
  }

  .footer-container {
    flex-direction: column;
  }

  .paragraph-2 {
    font-size: 18px;
    line-height: 22px;
  }

  .div-text-container {
    text-align: center;
  }
}


