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

body {
  background: #1ca6b3;
  font-family: "Kumbh Sans", sans-serif;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-image: url(../img/bg-pattern-top.svg), url(../img/bg-pattern-bottom.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: right 47vw bottom 46vh, left 47vw top 46vh;
}

.card {
  background: url(../img/bg-pattern-card.svg) top no-repeat white;
  max-width: 350px;
  width: 90%;
  border-radius: 10px;
  display: grid;
  align-items: center;
  min-height: 375px;
  grid-template-rows: 75% 25%;
  box-shadow: 0px 40px 60px 20px rgba(0, 0, 0, 0.116);
}
.card__info {
  margin-top: 70px;
  color: #6a6f81;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.card__info__img {
  width: 98px;
  height: 98px;
  border: 5px solid white;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px auto;
}
.card__info__img img {
  width: 100%;
  height: 100%;
}
.card__info__name {
  display: inline-block;
  font-size: 1.125rem;
  color: #2d3248;
}
.card__info__age {
  font-size: 1.125rem;
  font-weight: 400;
  color: #6a6f81;
}
.card__social {
  display: flex;
  width: 100%;
  height: 100%;
  border-top: 1px solid rgba(106, 111, 129, 0.199);
  justify-content: space-around;
  align-items: center;
  padding: 1rem;
  color: #2d3248;
}
.card__social span {
  color: rgba(106, 111, 129, 0.486);
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
}
.card__social__followers, .card__social__likes, .card__social__photos {
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
}

/*# sourceMappingURL=style.css.map */
