html {
  margin: 0;
  padding: 0;
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  background-color: #19a2ae;
  background-image: url("../../images/bg-pattern-top.svg"), url("../../images/bg-pattern-bottom.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: right 45vw bottom 25vh, left 45vw top 40vh;
  background-size: cover;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.3;
  overflow: hidden;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100vw;
  height: 90vh;
}

.card {
  border-radius: 20px;
  background-color: white;
  -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.315);
          box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.315);
  overflow: hidden;
}

.card__header {
  width: 100%;
  display: block;
}

.card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e3e4e8;
}

.card__body img {
  width: 35%;
  border-radius: 50%;
  border: 5px solid white;
  background-color: white;
  margin: -50px auto 0 auto;
}

.card__body__name {
  font-size: 1.125rem;
  margin-top: 2rem;
}

.card__body__name__age {
  font-weight: 400;
  margin-left: 0.5rem;
  color: #969696;
  opacity: 0.6;
}

.card__body__city {
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #969696;
  opacity: 0.6;
}

.card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 25px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.card__footer__socialStats {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.card__footer__socialStats h3 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.card__footer__socialStats p {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 400;
  font-size: 0.6875em;
  color: #969696;
  opacity: 0.6;
  letter-spacing: 2px;
}

.attribution {
  font-size: 0.6875em;
  text-align: center;
}

.attribution a {
  color: #3e52a3;
}
/*# sourceMappingURL=style.css.map */