body {
  background-color: #1D3557;
  width: 100dvw;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

a, p {
  color: #111111;
  text-decoration: none;
}

hr {
  border: 1px solid #eeeeee;
  width: 100%;
  margin: 0;
}

.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar picture {
  display: flex;
  width: 125px;
  height: 125px;
  border-radius: 500px;
  overflow: hidden;
  margin-bottom: -2rem;
}
.avatar img {
  max-width: 100%;
  height: auto;
}

.vCard {
  min-width: 270px;
  height: 375px;
  border-radius: 1rem;
  background: #F1FAEE;
  box-shadow: 0px 15px 15px rgba(4, 7, 11, 0.1), 0px 0px 35px rgba(4, 7, 11, 0.25);
  overflow: hidden;
  transition: height 500ms ease-in-out;
}
.vCard h1, .vCard h4, .vCard p {
  margin: 0;
  line-height: 100%;
}
.vCard__header {
  padding: 1rem;
  background: #457B9D;
  border-radius: 1rem 1rem 0 0;
  color: white;
}
.vCard__header .vCardHeader__name {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1.75rem;
}
.vCard__header .vCardHeader__name h1 {
  font-size: 24px;
  font-weight: 900;
}
.vCard__header .vCardHeader__name h4 {
  font-size: 18px;
  font-weight: 400 !important;
}
.vCard__header .vCardHeader__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.vCard__header .vCardHeader__actions .vCardHeaderActions__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  gap: 0.5rem;
  padding: 0.25rem 0;
}
.vCard__header .vCardHeader__actions .vCardHeaderActions__item img {
  width: 1.25rem;
  height: auto;
}
.vCard__header .vCardHeader__actions .vCardHeaderActions__item p {
  color: white;
}
.vCard__body {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 1rem;
}
.vCard__body a {
  display: block;
  width: 100%;
}
.vCard__body a .chevronIcon {
  opacity: 0.1;
  transition: all 300ms ease-in-out;
}
.vCard__body a:hover .chevronIcon {
  opacity: 1;
}
.vCard__body a:last-child {
  pointer-events: none;
}
.vCard__body .vCardBody__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
}
.vCard__body .vCardBody__item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 20px;
}
.vCard__body .vCardBody__item .icon img {
  height: 20px;
  width: auto;
}
.vCard__body .vCardBody__item p {
  width: 100%;
}

.loading .vCard {
  height: 0;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
.background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  background: #1d3557;
  overflow: hidden;
  z-index: -1;
}

.background li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 19s linear infinite;
}

.background li:nth-child(0) {
  left: 66%;
  width: 141px;
  height: 141px;
  bottom: -141px;
  animation-delay: 1s;
}

.background li:nth-child(1) {
  left: 77%;
  width: 172px;
  height: 172px;
  bottom: -172px;
  animation-delay: 3s;
}

.background li:nth-child(2) {
  left: 35%;
  width: 162px;
  height: 162px;
  bottom: -162px;
  animation-delay: 1s;
}

.background li:nth-child(3) {
  left: 11%;
  width: 148px;
  height: 148px;
  bottom: -148px;
  animation-delay: 6s;
}

.background li:nth-child(4) {
  left: 2%;
  width: 119px;
  height: 119px;
  bottom: -119px;
  animation-delay: 8s;
}

.background li:nth-child(5) {
  left: 41%;
  width: 120px;
  height: 120px;
  bottom: -120px;
  animation-delay: 8s;
}

.background li:nth-child(6) {
  left: 3%;
  width: 151px;
  height: 151px;
  bottom: -151px;
  animation-delay: 9s;
}

.background li:nth-child(7) {
  left: 81%;
  width: 183px;
  height: 183px;
  bottom: -183px;
  animation-delay: 27s;
}

.background li:nth-child(8) {
  left: 80%;
  width: 117px;
  height: 117px;
  bottom: -117px;
  animation-delay: 9s;
}

.background li:nth-child(9) {
  left: 10%;
  width: 100px;
  height: 100px;
  bottom: -100px;
  animation-delay: 39s;
}/*# sourceMappingURL=app.css.map */