@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --dark-cyan: hsl(185, 75%, 39%);
  --very-dark-blue: hsl(229, 23%, 23%);
  --dark-grayish-blue: hsl(227, 10%, 46%);
  --dark-gray: hsl(0, 0%, 59%);
}
a:link,a:visited {
  color: var(--dark-grayish-blue);
}
.bg {
  background: url(/images/bg-pattern-top.svg), url(/images/bg-pattern-bottom.svg), var(--dark-cyan);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* flex-direction: column; */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: 51rem;
  background-position: top -39vh left 2vw, bottom -40vh right 2vw;
  height: 100vh;
  width: 100%;
  font-family: 'Kumbh Sans', sans-serif;
  position: relative;
}
.attribution {
  position: absolute;
  bottom: 1rem;
  color: var(--very-dark-blue);
}
.card {
  width: 21rem;
  height: 26rem;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  text-align: center;
}

.profile {
  height: 11.5rem;
}

.profile .profile-img {
  border-radius: 50%;
  border: 5px solid #fff;
  margin-top: -3.3rem;
  margin-bottom: 1.9rem;
}

.profile h1 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--very-dark-blue);
}

.profile h1::after {
  content: '26';
  color: var(--dark-gray);
  margin-left: .6rem;
  font-weight: 400;
}

.profile h2 {
  font-size: 1rem;
  color: var(--dark-gray);
  font-weight: 400;
}

.social {
  border-top: 1px solid var(--dark-gray);
  font-weight: 700;
  color: var(--very-dark-blue);
  font-size: .8rem;
  padding-left: 5px;
  margin: 0;
  letter-spacing: .10rem;
}

.social .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 0 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: .7rem;
  color: var(--very-dark-blue);
  padding: 0 10px;
  margin-top: .9rem;
}

.social .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-weight: 400;
  font-size: .5rem;
  color: var(--dark-gray);
  margin-top: .4rem;
}

.social .name :nth-child(2) {
  margin-left: -15px;
}



@media screen and (max-width: 480px) {
  .bg {
    background-size: 45rem;
    background-position: top -20vh left -90vw, bottom -25vh right -90vw;
  }
}
/*# sourceMappingURL=style.css.map */