html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  border: 0;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

body {
  padding: 1rem 1rem 6rem;
  font-family: Inter;
}

@media screen and (width >= 1024px) {
  body {
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-bottom: 0;
    display: flex;
  }
}

body button {
  text-align: center;
  background: #ccc;
  border: none;
  padding: .75rem;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}

@media screen and (width <= 1023px) {
  body button {
    border-radius: .25rem;
    left: .5rem;
    right: .5rem;
  }
}

.movie {
  gap: 3rem;
  display: flex;
}

@media screen and (width <= 1023px) {
  .movie {
    flex-direction: column;
    gap: 2rem;
  }
}

.movie__content {
  flex-direction: column;
  gap: 1rem;
  width: 50%;
  padding: 2rem 0;
  display: flex;
}

@media screen and (width <= 1023px) {
  .movie__content {
    width: 100%;
    padding: 0;
  }
}

.movie__image {
  width: 50%;
}

@media screen and (width <= 1023px) {
  .movie__image {
    order: 1;
    width: 100%;
  }
}

.movie__image img {
  object-fit: cover;
  border-radius: .5rem;
  width: 100%;
  height: 100%;
  margin-left: auto;
  display: block;
  box-shadow: inset 0 1px 1px #ffffff1a, 0 50px 100px -20px #32325d40, 0 30px 60px -30px #0000004d;
}

.movie__title {
  max-width: 30rem;
  font-size: 4rem;
  font-weight: 700;
}

.movie__overview {
  max-width: 25rem;
  line-height: 150%;
}

.movie ul {
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  display: flex;
}

.movie ul li {
  background: #eee;
  border-radius: 5rem;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.movie__vote-average:before {
  content: "★";
  opacity: .5;
  margin-right: .25rem;
  display: inline-block;
}

/*# sourceMappingURL=index.5190d013.css.map */
