* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Kumbh Sans", sans-serif;
}

body {
  background-color: #19A1AE;
  background-image: url(./images/bg-pattern-top.svg), url(./images/bg-pattern-bottom.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: -18vw -53vh, 48vw 25vh;
}

#profile-card {
  width: 350px;
  height: 375px;
  margin-top: 10rem;
  margin-left: auto;
  margin-right: auto;
}

.bg-img {
  background: url(./images/bg-pattern-card.svg) no-repeat center center/cover;
  width: 100%;
  height: 110px;
  border-radius: 15px 15px 0px 0px;
  text-align: center;
}

.profile-img {
  border-radius: 50%;
  width: 96px;
  height: 96px;
  border: 5px solid white;
  z-index: 2;
  margin-top: 55px;
}

.white-bg-container {
  background-color: #fff;
  border-radius: 0px 0px 15px 15px;
}

#name-age {

  padding-top: 3rem;
  text-align: center;

}

.light-text {

  font-weight: 400;
  color: #6B7082;

}

h3 {
  color: #2E3349;
  font-size: 18px;
  font-weight: 700;
}

h4 {
  font-size: 14px;
  font-weight: 400;
  padding-top: 7px;
}

.divider {

  width: 100%;
  height: 1px;
  background-color: #E8E9EC;
  margin: 1.5rem 0rem;

}

#profile-info {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 60px;
  text-align: center;
  padding-bottom: 40px;
}

p {
  font-size: 10px;
  letter-spacing: 1.5px;
  padding-top: 5px;
}


/* 





MEDIA QUERIES




*/

@media screen and (max-width: 1024px) {

  body {
    background-position: -186vw -71vh,
      30vw 23vh;
  }

}

@media screen and (max-width: 480px) {

  body {
    background-position: -186vw -71vh,
      30vw 23vh;
  }

  #profile-card {
    width: 90%;
  }

}