* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --DarkCyan: hsl(185, 75%, 39%);
  --VeryDarkDesaturatedBlue: hsl(229, 23%, 23%);
  --DarkGrayishBlue: hsl(227, 10%, 46%);
  --DarkGray: hsl(0, 0%, 59%);
}
html,
body {
  height: 100%;
}

body {
  background-color: var(--DarkCyan);
  background-image: url(images/bg-pattern-top.svg), url(images/bg-pattern-bottom.svg);
  background-position: top -50vh right 50vw, top 50vh left 50vw;
  background-repeat: no-repeat;
  text-align: center;
  font-family: "Kumbh Sans", sans-serif;
}

/* text clases */
.text-lead {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--VeryDarkDesaturatedBlue);
}

.text-grey {
  color: var(--DarkGrayishBlue);
  font-weight: 400;
}

.text-medium {
  font-size: 0.875rem;
}

.text-small {
  font-size: 0.625rem;
  letter-spacing: 1.5px;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.card-component {
  min-width: 21.875rem;
  border-radius: 15px;
  background-color: white;
  overflow: hidden;
}

.card-component__background {
  height: 100%;
  width: 100%;
  background-image: url(./images/bg-pattern-card.svg);
  background-repeat: no-repeat;
  z-index: -1;
}

.card-component__background__img {
  margin-top: 5.4375rem;
  border: 5px solid white;
  border-radius: 50%;
}

.card-component__description {
  margin-top: 1.1875rem;
}
span {
  margin-left: 0.5625rem;
}
.info-box {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}

.stats {
  margin-top: 1.5rem;
  padding: 1.5rem 3.125rem;
  border-top: 1px solid hsla(0, 0%, 59%, 0.3);

  display: flex;
  align-items: center;
  justify-content: space-between;
}
