.container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 20px;
  margin-top: 50px;
}
.title{
  font-size: 2.5em;
  font-weight: 900;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.product {
  width: 400px;
  height: 450px;
  padding: .8em;
  background: #f5f5f5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  margin-bottom: 40px;
  border-radius: 20px;
}

.product img {
  height: 250px;
  width: 100%;
  border-radius: 10px;
}

.product h1{
  font-size: 1.5em;
  font-weight: 900;
  margin-top: 10px;
  margin-bottom: 20px;
}

.card-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

.card-footer h3{
  font-size: 1.5rem;
  font-weight: 900;
}

.card-footer button{
  border: 1px solid #252525;
  display: flex;
  padding: .3em;
  cursor: pointer;
  border-radius: 50px;
  transition: .3s ease-in-out;
}

.card-footer button:hover{
  border: 1px solid #ffcaa6;
  background-color: #ffcaa6;
}

.card-footer button{
  border: 1px solid #252525;
  display: flex;
  padding: .3em;
  cursor: pointer;
  border-radius: 50px;
  transition: .3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-footer button i{
  width: 30px;
  height: 30px;
  font-size: 24px;
}


.card-button:hover {
  border: 1px solid #ffcaa6;
  background-color: #ffcaa6;
}

.price{
  font-size: 24px;
}

.price sup{
  font-size: 14px;
}