*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  background-color: #d5e1ef;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  max-width: 320px;
  width: 90%;
  box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.047);
  text-align: center;
}

.card__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 24px;
}

.card__body {
  padding: 0 8px 16px;
}

.card__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1f304e;
  line-height: 1.3;
  margin-bottom: 16px;
}

.card__text {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #68778d;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  body {
    padding: 2rem;
  }

  .card {
    max-width: 340px;
    padding: 20px;
    box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.08);
  }

  .card__title {
    font-size: 1.4rem;
  }
}
