 // Hieronder de opmaak voor de Movie component die hieraan via Styled Component toegekend moet worden.

 background: #2b2d30;
  color: #aabdc1;
  display: flex;
  margin: .5rem 0;
  width: 100%;
  max-height: 20rem;

  & > div {
    width: 100%;
    margin: .5rem;
  }

  div:first-child {
    width: auto;
    margin: 0;
  }

  img {
    height: 20rem;
    margin-right: .5rem;
  }

  .plot {
    height: 8rem;
    overflow-y: scroll;
    margin: .5rem .25rem .5rem 0;
  }

  .schedule {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }

  h3 {
    margin-bottom: 0;
  }