@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

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

body {
  background-color: #d5e1ef;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Outfit;
}

.card {
  width: 320px;
  height: 499px;
  padding: 16px 16px 40px;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.05);
}

.card__img {
  width: 288px;
  height: 288px;
  border-radius: 10px;
  margin-bottom: 24px;
}

.card__title {
  font-size: 22px;
  font-weight: bold;
  line-height: 120%;
  color: #1f314f;

  margin-bottom: 16px;
}

.card__description {
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: #68778d;
}
