@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: #f5f8ff;
  font-size: 16px;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
@media screen and (max-width: 500px) {
  body {
    padding: 2rem;
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}

.btn {
  border-radius: 0.625rem;
  padding: 0.625rem 1.875rem;
  background: #ffffff;
  color: #1c67fd;
  font-size: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transform: scale(1);
}
.btn:hover {
  background: #1c67fd;
  color: #ffffff;
  transform: scale(1.1);
}
.btn--primary {
  background: #1c67fd;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn--primary:hover {
  background: rgb(1.7860262009, 68.7620087336, 202.7139737991);
}

.card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 31.25rem 3.125rem 3.125rem 31.25rem;
  padding: 1.25rem;
}
.card__wrapper {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}
.card__image {
  width: 12.5rem;
  height: 12.5rem;
  flex-shrink: 0;
}
.card__image img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
.card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  text-align: center;
}
.card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  margin-top: -1rem;
}
.card__title {
  margin: 0;
  font-size: 2rem;
}
.card__subtitle {
  margin: 0.3rem 0 0 0;
  color: #afafaf;
}
.card__buttons {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  align-self: center;
}
@media (max-width: 500px) {
  .card {
    border-radius: 1.875rem;
  }
  .card__wrapper {
    flex-direction: column;
    text-align: center;
  }
  .card__image {
    margin: 0 auto;
  }
  .card__content {
    gap: 1.5rem;
  }
  .card__info {
    margin-top: 0;
  }
  .card__buttons {
    justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */