@import url("https://fonts.googleapis.com/css2?family=Outfit&display=swap");

* {
  font-family: "Outfit", sans-serif;
  padding: 0;
  margin: 0;
}

.container {
  background-color: hsl(212, 45%, 89%);
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.cart {
  background-color: hsl(0, 0%, 100%);
  height: 450px;
  width: 320px;
  display: flex;
  justify-content: center;
  border-radius: 15px;
  flex-direction: column;
  margin: 15px;
}

.img {
  text-align: center;
}
.img img {
  height: 288px;
  width: 288px;
  border-radius: 15px;
  margin: 10px;
}

.title {
  margin: 0 auto;
  width: 288px;
}

.title p {
  font-weight: 700;
  text-align: center;
  color: hsl(218, 44%, 22%);
}

.text {
  margin: 15px auto;

  width: 288px;
}

.text p {
  text-align: center;
}
