/* --------- Fonts --------- */

@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@700&display=swap");

/* --------- Fonts --------- */

/* --------- Colors --------- */

:root {
  /* Primary */
  --blue-600: hsl(185, 75%, 39%);
  --navy-950: hsl(229, 23%, 23%);
  --gray-500: hsl(227, 10%, 46%);

  /* Neutral */
  --gray-100: hsl(225, 10%, 92%);
}

/* --------- Colors --------- */

/* --------- General --------- */

body {
  font-size: 1.8rem;
  font-family: "Kumbh Sans";
  color: var(--navy-950);
  background: url(../images/bg-pattern-top.svg) -25rem -45rem no-repeat,
    url(../images/bg-pattern-bottom.svg) 75rem 45rem no-repeat;
  background-color: var(--blue-600);
}

.wrapper {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

/* --------- General --------- */

/* --------- Card --------- */

.card {
  max-width: 35rem;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
}

.card__background {
  display: block;
  height: auto;
  max-width: 100%;
}

/* .card__info {
} */

.info-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 2.5rem;
}

.info-card__avatar {
  display: block;
  border-radius: 50%;
  border: 0.5rem solid #fff;
  margin: -5.4rem 0 2rem;
}

.info-card__text {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.info-card__title {
  font-weight: 700;
}

.info-card__age {
  color: var(--gray-500);
}

.info-card__city {
  font-size: 1.4rem;
  color: var(--gray-500);
}

.divider {
  height: 0.1rem;
  background-color: var(--gray-100);
}

.card__list-stats {
  padding: 2.5rem 0;
}

.list-stats {
  display: flex;
  justify-content: space-evenly;
}

.list-stats__item {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}

.list-stats__count {
  font-weight: 700;
}

.list-stats__name {
  color: var(--gray-500);
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}

/* --------- Card --------- */
