:root {
    --bg-color: #fafafa;
    --secondary-bg-color: #eeeeee;
    --heading-color: #5f5f5f;
    --body-color: rgba(0, 0, 0, 0.7);
    --border-color: rgba(0, 0, 0, 0.5);
    --hover-color: #2660ab;
    --nav-text-color: #5a5a5a;
    --tag-color: #424242;
    --blockquote-text-color: #858585;
    --padding-sections: 1rem;
}

/* html[data-theme='dark'] {
    --bg-color: #292a2d;
    --secondary-bg-color: #2c2d32;
    --heading-color: rgb(169, 169, 179);
    --body-color: rgb(169, 169, 179);
    --border-color: rgb(38, 38, 38);
    --nav-text-color: rgb(191, 191, 191);
    --tag-color: rgb(191, 191, 191);
    --blockquote-text-color: #808080;
} */

html {
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;

    font-family: 'Open Sans', sans-serif;
    font-size: 100%;

}

body {
  margin: 0px;
  padding: 0px;
  display: flex;
  height: 100vh;
  color: var(--body-color);
  font-size: 1rem;
}

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

img { max-width: 100%; height: auto; }
header {}
footer {}

/* ================================================= */
.filler {
  /* background-color: #555555; */
  flex-grow: 1;
  text-align: center;
}

/* ================================================= */
.pane-center {
  /* background-color: #ffff00; */
  width: 1200px;
  margin: auto;
  justify-content: center;
  align-items: center;
}

.pane-left {
  /* background-color: #ffff00; */
  flex: 0 0 30%;
  min-width: 400px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-right: 1px solid var(--border-color);
}

/* ================================================= */
.pane-right {
  /* background-color: #00ffff; */
  flex: 1 1 auto;

  display: flex;
  flex-direction: column;
  overflow: auto;
}

/* ================================================= */
.about {
  /* background: #ff00ff; */
  width: 400px;
  margin: auto;
  padding: var(--padding-sections);
  padding-top: 5%;
  padding-bottom: 5%;
  text-align: center;
}

.about img {
  /* background: orange; */
  width: 80px;
  border-radius: 8%;
}

.about h3 {
  text-transform: capitalize;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 1.0rem;
}

.about .subtitle {
  font-size: 1.0rem;
  line-height: 1.0rem;
  margin-bottom: 1.5rem;
}

.about .description {
  font-weight: 100;
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 1.4rem;
}

.about .social-links {
  /* background:red; */
  padding: 0px;
  margin: 0px;
  font-size: 1rem;
  line-height: 0px;
}

.about .social-links li {
  /* background: blue; */
  display: inline-block;
  padding: 0.25rem;
  padding-bottom: 0px;
}

.about .social-links a {
    color: var(--heading-color);
}

.about .social-links a:hover {
    color: var(--hover-color);
}

/* ================================================= */
.content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

/* ================================================= */

.demoreel {
  /* background-color: #0000ff; */
  /* height: 100%; */
  /* min-height: 400px; */
  /* width: 100%; */
  margin: auto;
  padding: var(--padding-sections);

  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
}

.iframe-wrapper {
  flex: 1 1 auto;
  /* text-align: center; */
}

iframe {
  width: 100%;
  height: 100%;
  border: 0px;
}

/* ================================================= */

.credits {
  /* background: #00aaff; */
  flex-grow: 1;
  padding: var(--padding-sections);

  display: flex;
  justify-content: center;
  align-items: center;
}

.poster-container {
  /* background: #ffaa00; */

  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.poster-container>* {
  flex: 1 1 auto;
}

.poster-container .poster {
  width: 100%;
  height: 100%;
  line-height: 0px; /* to remove the gap below the image used for descendant characters  */
}


/* ================================================= */

/* Media Queries: Tablet Landscape */
@media only screen and (min-width: 769px) {
  .poster-container>* {
    flex: 1 1 auto;
  }
}

/* Media Queries: Tablet Portrait */
@media only screen and (max-width: 768px) {
  body {
    flex-wrap: wrap;
  }

  .pane-left {
    min-width: 100%;
    min-height: 70vh;
  }

  .poster-container>* {
    flex: 1 1 33.3333%;
  }
}

/* Media Queries: Phone Landscape */
@media only screen and (max-width: 768x) {
}

/* Media Queries: Phone Portrait */
@media only screen and (max-width: 479px) {
  .poster-container>* {
    flex: 1 1 50%;
  }
}
