* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

body {
  background-color: #d6e2f0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  background-color: #ffffff;
  width: 320px;
  text-align: center;
  padding: 12px;
  border-radius: 15px;
}

img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.title {
  color: #1f3251;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
}

.card p + p {
  color: #68778d;
  font-weight: 400;
  font-size: 16px;
}