*, *::before, *::after {
  box-sizing: border-box;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

body {
  margin: 0;
  padding: 0;
  background-color: hsl(233, 47%, 7%);
  color: hsla(0, 0%, 100%, 0.75);
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  text-align: center;
}

main {
  height: 100svh;
}

.container {
  width: 88%;
  max-width: 30rem;
  background-color: hsl(244, 37%, 16%);
  border-radius: 10px;
  overflow: hidden;
  transition: all 500ms ease-in-out;
}
.container .img {
  position: relative;
}
.container .img .img-hover {
  position: absolute;
  background-color: hsl(277, 64%, 61%);
  mix-blend-mode: multiply;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.container .mobile-img {
  display: block;
  width: 100%;
}
.container .desktop-img {
  display: none;
}

.sub-container {
  padding: 2rem;
}
.sub-container h1 {
  margin-block-start: 0.3125rem;
  color: hsl(0, 0%, 100%);
  line-height: 1.1;
  font-size: 1.75rem;
}
.sub-container h1 span {
  color: hsl(277, 64%, 61%);
}
.sub-container p {
  line-height: 1.7;
}

.stats {
  flex-direction: column;
  gap: 1.125rem;
  margin-block-start: 2.25rem;
  transition: all 300ms ease-in-out;
}
.stats p {
  color: hsla(0, 0%, 100%, 0.6);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-family: "Lexend Deca", sans-serif;
  letter-spacing: 1px;
  margin: 0;
}
.stats p span {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: none;
  color: hsl(0, 0%, 100%);
}

@media (min-width: 29.6875rem) {
  .stats {
    flex-direction: row;
    gap: 4rem;
  }
}
@media (min-width: 71.25rem) {
  .container {
    min-width: 68.75rem;
    max-height: 28rem;
    display: flex;
    flex-direction: row-reverse;
    text-align: left;
  }
  .container .mobile-img {
    display: none;
  }
  .container .desktop-img {
    display: block;
    height: 100%;
  }
  .container .img {
    width: 100%;
  }
  .container .sub-container {
    width: 100%;
    justify-content: left;
    padding: 4.5rem;
  }
  .container .sub-container h1 {
    margin-block-start: 0;
    font-size: 2.25rem;
  }
  .container .sub-container > p {
    margin-block-start: 2rem;
  }
}/*# sourceMappingURL=styles.css.map */