@import url('https://fonts.googleapis.com/css?family=Work+Sans:300,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pathway+Gothic+One:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');

:root {
  --lightGreen: #6aad6a;
}

body {
  font-family: 'Barlow', sans-serif;
  /*font-family: 'Roboto', sans-serif;*/
  font-size: 1.2em;
  font-weight: 400;
  /*overflow-x: hidden;*/
  color: black;
}

a {
  color: var(--lightGreen);
  font-weight: 700;
  text-decoration: none;
}

a:visited {
  color: var(--lightGreen);
  text-decoration: none;
}
a:active {
  color: var(--lightGreen);
  text-decoration: none;
}

p {
  margin: 0;
  margin-top: 0.45rem;
  margin-bottom: 0.45rem;
}

div > p > span {
  font-weight: 600;
}

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
}

.section:nth-of-type(odd) {
  background-color: #f1f1f1;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}

.title {
  margin: 0 auto;
}

.programPoster,
.directorImg {
  max-width: 100%;
}

.directorImg,
.castImg {
  align-self: center;
  align-content: center;
  display: flex;
  outline: 2px solid black;
  border: 5px solid white;
}

.directorImg {
  max-width: 50%;
}

.castImg {
  max-width: 100%;
}

.centered {
  display: flex;
  align-items: center;
  margin: auto;
  text-align: center;
}

.grayscale {
  filter: grayscale();
}

.section {
  padding: 0.5em;
}

.h1 {
  font-family: 'Pathway Gothic One', sans-serif;
  font-weight: bold;
  font-size: 1.5em;
  margin-bottom: 0.5em;
  text-align: center;
  padding: 0;
  width: 100%;
}

.h2 {
  font-family: 'Pathway Gothic One', sans-serif;
  margin-top: 0;
  font-size: 1.35em;
  margin-bottom: 0.5em;
  text-align: center;
}

.cast {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0.35em;
}

.cast-member-list-row {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.cast-member-list-character {
  display: flex;
  flex-grow: 0;
  min-width: fit-content;
}
.cast-dots-filler {
  display: flex;
  flex-grow: 1;
  overflow-x: hidden;
  margin: auto 10px;
}

.cast-dots-filler::after {
  content: '................................................................................................................................................................................................................................................................................................................................................................................................................';
}

.cast-member-list-actorName {
  display: flex;
  flex-grow: 0;
  min-width: fit-content;
}

.cast-blurbs {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.cast-blurbs-img {
  margin-top: 0.35em;
  display: block;
  outline: 2px solid black;
  border: 5px solid white;
  max-width: 35%;
  float: left;
  margin-right: 0.5em;
  margin-bottom: 0.3em;
}

.cast-blurbs-actor:nth-of-type(even) > .cast-blurbs-img {
  float: right;
  margin-right: 0.15em;
  margin-left: 0.5em;
}

.cast-blurbs-actor-details {
  display: flex;
  width: 70%;
  flex-direction: column;
}

.cast-blurbs-actorName {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 1.45em;
  border-bottom: 1px solid black;
  padding-bottom: 3px;
}

.crew-2col {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 10px;
  padding: 10px;
  text-align: center;
  padding-top: 0;
  margin-top: 0;
}

.crew-2col > .sectionHeader,
.crew-1col > .sectionHeader {
  margin-bottom: 0;
}

.crew-2col > div,
.crew-1col > div {
  margin: 0;
}

.crew-2col div p,
.crew-1col div p {
  /*border: 1px solid green;*/
  margin-bottom: 0.75em;
  padding: 0;
}

.crew-1col {
  grid-column: 1 / span 2;
}

.crew-1col > div {
  margin-bottom: 0.75em;
}

@media screen and (min-width: 600px) {
  .container {
    max-width: 60%;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }
}
