@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap");
:root {
  --dark-cyan: hsl(185, 75%, 39%);
  --very-dark-desaturated-blue: hsl(229, 23%, 23%);
  --dark-grayish-blue: hsl(227, 10%, 46%);
}

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

html {
  font-size: 64.5%;
}

body {
  font-family: "Kumbh Sans", sans-serif;
  background-color: var(--dark-cyan);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  font-size: 1.4rem;
}

.bg-pattern-top {
  position: absolute;
  top: -80%;
  right: 50%;
  z-index: 10;
}

.bg-pattern-bottom {
  position: absolute;
  bottom: -80%;
  left: 50%;
  z-index: 10;
}

ul {
  list-style: none;
}

.card {
  background-color: #fff;
  border-radius: 13px;
}

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

.profile__img {
  width: 10rem;
  border-radius: 100%;
  border: 2px solid white;
}

.user__info {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  gap: 1rem;
  margin-top: 7rem;
}

.stats__number {
  margin-bottom: 2rem;
  font-weight: 700;
}

.name {
  color: black;
  font-weight: 400;
}

.city {
  font-weight: 400;
  margin-bottom: 2rem;
}

.stats__numbers {
  font-weight: 700;
  /* font-weight: bold; */
}

.stats__info {
  font-weight: lighter;
  letter-spacing: 2px;
  color: var(--dark-grayish-blue);
  font-size: 1.2rem;
}

.age,
.city {
  color: var(--dark-grayish-blue);
}

.stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 2rem 0;
  border-top: 1px solid rgb(238, 236, 236);
}

.profile__img {
  position: absolute;
  top: 70%;
  left: 35%;
}

.profile__background {
  background-image: url("./images/bg-pattern-card.svg");
  height: 20vh;
  position: relative;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}

@media (min-width: 375px) {
  .container {
    margin: 0 auto 1rem;
    width: 35rem;
  }
}
