@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Lexend+Deca&display=swap");
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  background-color: hsl(233, 47%, 7%);
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.card_preview {
  background-color: hsl(244, 38%, 16%);
  border-radius: 1rem;
  text-align: center;
  margin: 1rem;
  max-width: 34rem;
  overflow: hidden;
}
.card_preview .right {
  background-color: hsla(277, 62%, 64%, 0.9);
}
.card_preview .right img {
  mix-blend-mode: multiply;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 18rem;
  -o-object-position: top;
     object-position: top;
  width: 100%;
  height: 100%;
}

.left {
  padding: 2rem;
}
.left h2 {
  color: hsl(0, 0%, 100%);
  line-height: 1.2;
}
.left h2 span {
  color: hsl(277, 64%, 61%);
}
.left p {
  margin-top: 1.2rem;
  color: hsla(0, 0%, 100%, 0.75);
  font-weight: 400;
}
.left ul {
  list-style-type: none;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.left ul strong {
  font-weight: 700;
  color: hsl(0, 0%, 100%);
  font-size: 1.4rem;
  display: block;
}
.left ul span {
  text-transform: uppercase;
  font-family: "Lexend Deca", sans-serif;
  color: hsla(0, 0%, 100%, 0.6);
}

footer {
  font-size: inherit;
  text-align: center;
  color: hsl(0, 0%, 100%);
  padding: 1rem;
}

a {
  color: hsl(277, 64%, 61%);
}

@media (min-width: 55rem) {
  body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  .card_preview {
    display: flex;
    flex-direction: row-reverse;
    text-align: left;
    max-width: 68.875rem;
    border-radius: 1rem;
  }
  .card_preview .left, .card_preview right {
    width: 50%;
  }
  .card_preview .right img {
    max-height: none;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .card_preview .left {
    padding: 4rem;
  }
  .card_preview .left h2 {
    font-weight: 700;
    color: hsl(0, 0%, 100%);
    font-size: 2.4em;
  }
  .card_preview .left h2 span {
    color: hsl(277, 64%, 61%);
  }
  .card_preview .sub-text p {
    margin-top: 1.3rem;
    line-height: 1.5;
    opacity: 0.8;
    font-size: 1rem;
  }
  .card_preview ul {
    text-transform: uppercase;
    margin-top: 4.9rem;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 3rem;
    list-style: none;
  }
  .card_preview ul li strong {
    display: block;
  }
  .card_preview ul li span {
    font-size: 0.8rem;
    font-family: "Lexend Deca", sans-serif;
  }
}/*# sourceMappingURL=styles.css.map */