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

body {
  background-color: #d5e1ef;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: Outfit, sans-serif;
  text-align: center;
}

.card {
  width: 20rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1.25rem;
  padding: 1rem 1rem 2.5rem 1rem;
  gap: 1.5rem;
  box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
}

.card__image {
  width: 18rem;
  height: 18rem;

  border-radius: 0.625rem;
}

.card__title {
  font-size: 1.375rem;
  line-height: 120%;
  letter-spacing: 0;
  margin-bottom: 1rem;
  color: #1f314f;
}

.card__text {
  font-size: 1rem;
  line-height: 140%;
  letter-spacing: 0.0125rem;
  font-weight: 400;
  color: #68778d;
}
