/* Colors */
/* Primary */
/*  (main background) */
/* blue (card background): */
/* Neutral */
/* (main heading, stats) */
/* white (main paragraph): */
/* (stat headings) */
/* font size */
/* font weight */
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
}
@font-face {
  font-family: "LexendDeca";
  src: url("./fonts/LexendDeca-VariableFont_wght.ttf") format("truetype");
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background-color: hsl(233, 47%, 7%);
  color: hsl(0, 0%, 100%);
  font-size: 1rem;
  font-family: "LexendDeca";
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 95%;
  width: 62rem;
  min-height: 24rem;
  display: flex;
  background-color: hsl(244, 38%, 16%);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.container__illustration {
  order: 2;
  flex: 1 1 auto;
  max-width: 50%;
  width: 50%;
  border-radius: 0 10px 10px 0;
  background-color: hsl(277, 64%, 61%);
}
.container__illustration-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  mix-blend-mode: multiply;
  opacity: 0.8;
}
.container__description {
  flex: 0 0 auto;
  width: 50%;
  min-width: 30rem;
  order: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  line-height: 1.75;
  padding: 4rem;
}
.container__description__header h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}
.container__description__header h1 span {
  color: hsl(277, 64%, 61%);
  background: linear-gradient(270deg, hsl(277, 64%, 61%), hsl(247, 64%, 61%), hsl(307, 64%, 61%), hsl(277, 64%, 61%));
  background-size: 400% 400%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 6s ease infinite;
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.container__description__header-text {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.75);
}
.container__description__stats {
  width: 90%;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.container__description__stats-value {
  font-size: 0.75rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  color: hsla(0, 0%, 100%, 0.6);
}
.container__description__stats-value h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
}

@media (max-width: 43.75rem) {
  body {
    align-items: flex-start;
  }
  .container {
    flex-direction: column;
    margin: 6rem 1rem;
    width: 98%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .container__illustration {
    order: 1;
    flex: 1;
    width: 100%;
    max-width: 100%;
    border-radius: 10px 10px 0 0;
  }
  .container__description {
    flex: 1;
    width: 100%;
    min-width: auto;
    padding: 1.75rem;
    text-align: center;
    text-wrap: pretty;
  }
  .container__description__header h1 {
    margin-bottom: 1.25rem;
  }
  .container__description__header-text {
    margin: 0 1.5rem;
    color: hsla(0, 0%, 100%, 0.75);
  }
  .container__description__stats {
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0;
  }
  .container__description__stats-value {
    margin: 1rem;
    place-items: center;
  }
}
@media (prefers-reduced-motion) {
  .container_description__stats {
    animation: none;
  }
}/*# sourceMappingURL=style.css.map */