/* Scss Document */
.movie-list {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 640px) {
  .movie-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.movie-item {
  margin-bottom: 6rem;
  width: 47%;
}
@media only screen and (max-width: 640px) {
  .movie-item {
    margin-bottom: 3rem;
  }
}
.movie-img {
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.movie-body {
  padding: 3rem;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media only screen and (max-width: 640px) {
  .movie-body {
    padding: 2rem;
    width: 60%;
    font-size: 1.3rem;
  }
}
.movie-comment {
  padding: 0 3rem 3rem;
}
@media only screen and (max-width: 640px) {
  .movie-comment {
    margin-top: 0;
    padding: 0 2rem 2rem;
    font-size: 1.5rem;
  }
}