@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap");
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 18px;
  background: #19a2ae;
  background-image: url("/images/bg-pattern-top.svg"), url("/images/bg-pattern-bottom.svg");
  background-size: 50%, 50%;
  background-repeat: no-repeat, no-repeat;
  background-position: top -300px left -100px, bottom -350px right -150px;
}
@media (max-width: 375px) {
  body {
    background-size: 100% 50%, 100% 75%;
    background-position: top -50% left -200px, bottom -130% right -200px;
  }
}

main {
  position: relative;
  top: 150px;
  width: 30%;
  height: 60%;
  background: #FFF;
  margin: 0 auto;
  border-radius: 20px;
}
@media (max-width: 375px) {
  main {
    width: 90%;
  }
}
main .card__header {
  width: 100%;
  height: 38%;
  background: url("/images/bg-pattern-card.svg");
  border-radius: 20px 20px 0 0;
}
@media (max-width: 375px) {
  main .card__header {
    height: 30%;
  }
}
main .card__header img {
  width: 25%;
  position: absolute;
  border-radius: 50%;
  border: solid 4px #FFF;
  top: 23%;
  left: 37%;
}
@media (max-width: 375px) {
  main .card__header img {
    top: 20%;
  }
}
@media (max-width: 375px) {
  main .card__container {
    height: 50%;
  }
}
main .card__container h1 {
  text-align: center;
  color: #2d3248;
}
main .card__container h1 span {
  color: #969696;
  font-size: 32px;
}
main .card__container p {
  color: #969696;
  text-align: center;
}
main .card__footer {
  display: flex;
  height: 25%;
  justify-content: space-around;
  text-align: center;
  align-items: center;
  font-weight: 700;
  border-top: 0.5px solid #969696;
}
main .card__footer span {
  color: #969696;
  font-size: 14px;
}

.attribution {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
}

/*# sourceMappingURL=style.css.map */
