body,
div,
header,
main,
button,
img,
i,
span,
ul,
li,
h2 {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

body {
  background: linear-gradient(90deg, #9F55FF 0%, #FF46B9 100%);
  min-height: 100vh;
  padding: 20px;
  display: grid;
  place-content: center;
  width: 100vw;
}

#app {
  background-color: rgb(30, 31, 40);
  border-radius: 16px;
  box-shadow: 0px -3px 22px 0px rgba(0, 0, 0, 0.35);
  padding: 64px 96px;
  display: grid;
  gap: 36px;
  max-width: 846px;
  position: relative;
}
#app::before {
  content: "";
  background: linear-gradient(135deg, #C497FF, #9747FF);
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  padding: 8px;
  border-radius: 16px;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
#app header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
#app header .logo {
  height: 44px;
  width: 85px;
}
#app header button {
  color: rgb(255, 255, 255);
  background: linear-gradient(90deg, #8323FF 0%, #FF2DAF 100%);
  border: none;
  display: flex;
  padding: 8px 16px;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
#app header button:hover {
  background: linear-gradient(90deg, #9F55FF 0%, #FF46B9 100%);
}
#app header button i {
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 7px;
}
#app main {
  max-width: calc(100vw - 120px);
}
#app main #movies {
  display: grid;
  grid-auto-flow: column;
  gap: 36px;
  overflow-x: scroll;
  overflow-y: hidden;
}
#app main #movies .movie {
  animation: appear var(--delay);
  display: grid;
  gap: 12px;
}
#app main #movies .movie:nth-child(1) {
  --delay: 0.6s;
}
#app main #movies .movie:nth-child(2) {
  --delay: 1.2s;
}
#app main #movies .movie:nth-child(3) {
  --delay: 1.8s;
}
@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
}
#app main #movies .movie .title {
  display: flex;
  align-items: center;
  gap: 5px;
}
#app main #movies .movie .title h2 {
  width: 100%;
  height: 40px;
  max-width: 140px;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgb(255, 255, 255);
  text-overflow: ellipsis;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
}
#app main #movies .movie .title .stars {
  display: flex;
  gap: 4px;
  color: rgb(254, 234, 53);
  font-size: 16px;
  align-items: center;
}
#app main #movies .movie .content {
  display: grid;
  gap: 8px;
}
#app main #movies .movie .content .poster {
  height: 282px;
  width: 198px;
  border-radius: 8px;
}
#app main #movies .movie .content .info {
  display: flex;
  justify-content: space-between;
}
#app main #movies .movie .content .info .duration,
#app main #movies .movie .content .info .release {
  color: rgb(139, 141, 155);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}
#app main #movies .movie .content .info .duration i,
#app main #movies .movie .content .info .release i {
  font-size: 20px;
}
#app main #movies .movie .content button {
  background-color: rgb(43, 43, 55);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
#app main #movies .movie .content button:hover {
  background: rgb(55, 55, 69);
}

@media (max-width: 846px) {
  #app {
    padding: 64px 50px;
  }
}
@media (max-width: 426px) {
  #app header {
    justify-content: center;
  }
}/*# sourceMappingURL=styles.css.map */