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

.container {
  background-color: #19A1AD;
  min-height: 100vh;
  width: 100%;
  position: relative;
  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;
}

#top {
  min-width: 300px;
  max-width: 500px;
  position: absolute;
  left: -150px;
  top: -150px;
}

#bottom {
  min-width: 300px;
  max-width: 500px;
  position: absolute;
  right: -150px;
  bottom: -150px;
}

.card {
  width: 400px;
  position: fixed;
  height: 400px;
  border-radius: 5%;
  background-color: white;
  position: relative;
}

.card .card-background {
  background-image: url(../images/bg-pattern-card.svg);
  height: 40%;
}

.card .profile-pic img {
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  border: 5px solid white;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}

.text-wrapper {
  height: 30%;
  width: 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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
}

.text-wrapper .info {
  margin-top: 50px;
  text-align: center;
}

.text-wrapper .name-age {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Kumbh Sans', sans-serif;
  margin-left: 15px;
}

.text-wrapper .name-age p {
  margin-top: 5px;
  margin-left: 10px;
  font-size: 18px;
  color: gray;
}

.city p {
  color: gray;
  font-size: 18px;
  margin-top: 10px;
  margin-left: 15px;
}

.following {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}

.following p {
  padding: 3px 50px;
}

.following .followers {
  text-align: center;
}

.following .followers p:nth-child(1) {
  margin-left: 15px;
}

.following .followers p:nth-child(2) {
  color: gray;
  font-size: 14px;
}

.following .likes p:nth-child(1) {
  margin-left: -3px;
}

.following .likes p:nth-child(2) {
  color: gray;
  font-size: 14px;
}

.following .photos p:nth-child(1) {
  margin-left: 5px;
}

.following .photos p:nth-child(2) {
  color: gray;
  font-size: 14px;
}

@media (min-width: 1000px) {
  #top {
    min-width: 300px;
    max-width: 800px;
    position: absolute;
    left: -150px;
    top: -150px;
  }
  #bottom {
    min-width: 300px;
    max-width: 800px;
    position: absolute;
    right: -150px;
    bottom: -150px;
  }
}
/*# sourceMappingURL=style.css.map */