*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  box-sizing: border-box;
}

body {
  font-family: "Kumbh Sans", sans-serif;
}

main {
  background-color: #41cbd3;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
}

.bg-pattern-top {
  position: absolute;
  background-image: url(../images/bg-pattern-top.svg);
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: right bottom;
  top: -40%;
  left: -50%;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 62.5em) {
  .bg-pattern-top {
    top: -50%;
    left: -90%;
    width: 145%;
  }
}

.bg-pattern-bottom {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(../images/bg-pattern-bottom.svg);
  background-repeat: no-repeat;
  background-size: 65%;
  background-position: top left;
  bottom: -40%;
  right: -45%;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 62.5em) {
  .bg-pattern-bottom {
    bottom: -50%;
    right: -90%;
    width: 145%;
  }
}

.profile-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  background-color: #ffffff;
  width: 350px;
  border-radius: 15px;
  overflow: hidden;
  z-index: 1;
}
.profile-card__background {
  background-image: linear-gradient(rgba(9, 137, 180, 0.01), rgba(83, 255, 238, 0.418)), url(../images/bg-pattern-card.svg);
  width: 100%;
  height: 140px;
}
.profile-card__image-box {
  margin: -4.8rem 0 0;
}
.profile-card__image {
  border-radius: 50%;
  border: 5px solid #ffffff;
}
.profile-card__profile {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.profile-card__name, .profile-card__stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2e3349;
}
.profile-card__name span {
  color: #6b7082;
  font-weight: 400;
  display: inline-block;
  margin-left: 0.5rem;
}
.profile-card__location {
  font-size: 1.4rem;
  color: #6b7082;
}
.profile-card__line {
  width: 100%;
  height: 1px;
  background-color: #e8e9ec;
}
.profile-card__stats {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
}
.profile-card__stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.profile-card__stat-label {
  font-size: 1rem;
  color: #6b7082;
  letter-spacing: 1.5px;
}/*# sourceMappingURL=main.css.map */