* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: hsl(212, 45%, 89%);
}
.container {
  width: 320px;
  height: 490px;
  background-color: hsl(0, 0%, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px;
  border-radius: 20px;
}
img {
  width: 288px;
  height: 288px;
  object-fit: cover;
  border-radius: 20px;
}
.text {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.bold {
  font-size: 1.3rem;
  font-weight: 700;
  color: #383d4b;
  font-family: "Outfit";
  color: hsl(218, 44%, 22%);
}
.text > span {
  font-size: 16px;
  font-weight: 400;
  color: hsl(220, 15%, 55%);
}
