:root {
  --red: red;
}

.body {
  background-color: #000;
}

.header {
  width: 100dvw;
  height: 100dvh;
  position: static;
}

.background-video {
  width: 100dvw;
  height: 100dvh;
  display: none;
}

.logo-code {
  mix-blend-mode: screen;
  position: absolute;
  top: 0;
}

.projects {
  justify-content: center;
  align-items: center;
  width: 100dvw;
  height: 100dvh;
  display: flex;
}

.upcoming-projects {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  display: flex;
}

.body-text {
  color: red;
  text-transform: uppercase;
  font-family: Inconsolata, monospace;
}

.body-text.contained {
  width: 150px;
}

.body-text.date {
  width: 50px;
}

.body-text.film-type, .body-text.genre {
  width: 150px;
}

.body-text.state {
  text-align: right;
  width: 120px;
}

.div-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.project-line {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-bottom: 1px solid var(--red);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.split-lines {
  color: #444;
  text-align: center;
  text-transform: uppercase;
  font-size: 8em;
  line-height: 1;
}

.about {
  justify-content: center;
  align-items: center;
  width: 100dvw;
  height: 100dvh;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.footer {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100dvw;
  height: 20vh;
  display: flex;
}

.social-image {
  color: red;
  fill: red;
  width: 30px;
}

.mobile-stack {
  justify-content: space-between;
  align-items: center;
  width: 50%;
  display: flex;
}

.mobile-stack-1 {
  justify-content: space-between;
  align-items: center;
  width: 33%;
  display: flex;
}

.red-line {
  display: none;
}

.link-block {
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .body-text.contained, .body-text.film-type {
    width: 100px;
  }

  .body-text.genre {
    width: 120px;
  }

  .split-lines {
    font-size: 4em;
  }

  .mobile-stack {
    width: 66%;
  }
}

@media screen and (max-width: 767px) {
  .projects {
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .upcoming-projects {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .body-text.contained {
    text-align: left;
    font-weight: 700;
  }

  .body-text.date {
    text-align: right;
    font-weight: 700;
  }

  .body-text.film-type {
    text-align: center;
  }

  .body-text.genre {
    text-align: left;
  }

  .body-text.state {
    text-align: right;
  }

  .project-line {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-bottom-width: 0;
    flex-flow: column;
  }

  .split-lines {
    font-size: 3em;
  }

  .mobile-stack, .mobile-stack-1 {
    width: 100%;
  }

  .red-line {
    display: block;
  }
}

@media screen and (max-width: 479px) {
  .projects {
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
  }

  .upcoming-projects {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .body-text.contained {
    text-align: left;
    width: 120px;
    font-weight: 700;
  }

  .body-text.date {
    text-align: right;
    font-weight: 700;
  }

  .body-text.film-type {
    color: #fff;
    width: auto;
  }

  .body-text.genre {
    color: #fff;
    text-align: left;
  }

  .body-text.state {
    color: #fff;
    text-align: right;
  }

  .div-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .project-line {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .split-lines {
    font-size: 2em;
  }

  .about {
    height: auto;
    padding: 0 10px 280px;
  }

  .mobile-stack, .mobile-stack-1 {
    width: 100%;
  }

  .red-line {
    background-color: var(--red);
    width: 80%;
    height: 1px;
  }
}


