html {
  box-sizing: border-box;
  overflow: hidden;
  height: 100%;
}

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

body {
  margin: 0;
  padding: 0;
  line-height: 1.3;
  font-family: 'Kumbh sans', sans-serif;
  background-color: #19a2ae;
  width: 100vw;
  height: 100%;
  overflow: hidden;
  font-size: 1.125rem;
  position: fixed;
}

h1, h2, p {
  margin: 0;
  line-height: 1.5;
}

p {
  font-weight: 200;
}

.background__top {
  position: absolute;
  bottom: 35%;
  right: 53%;
}

.background__bottom {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: -1;
}

.profile {
  width: 21.875rem;
  height: 26.65rem;
  position: relative;
  border-radius: 5%;
  overflow: hidden;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.15);
}

.profile__wrapper {
  display: grid;
  place-items: center center;
  height: 100%;
}

.profile__bg-image {
  height: 8.75rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.profile__info {
  background-color: #fff;
  position: relative;
}

.profile__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 25px;
}

.profile__line1 {
  padding: 30px;
}

.profile__dp {
  width: 6.5625rem;
  height: 6.5625rem;
  position: absolute;
  top: -20%;
  left: 35%;
  border: 5px solid #fff;
  border-radius: 50%;
}

.profile__dp img {
  border-top-left-radius: 50% 50%;
  border-top-right-radius: 50% 50%;
  border-bottom-right-radius: 50% 50%;
  border-bottom-left-radius: 50% 50%;
}

.profile__stats {
  display: flex;
  align-items: baseline;
  justify-content: space-around;
  font-size: 1rem;
  text-align: center;
  height: 115px;
  padding: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
/*# sourceMappingURL=style.css.map */