.prices {
  margin: 10px;
  text-align: center;
}

.socials {
  margin: 10px;
  text-align: center;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 10px;
}
.card {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  width: 25vh;
  height: fit-content;
  text-align: center;
  position: relative;
  display: inline-block;
  margin: 10px;

}

.card img {
  height: 25vh;
  width: 25vh;
  overflow: hidden;
  object-fit: cover;
}

/* On mouse-over, add a deeper shadow */
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

/* Add some padding inside the card container */
.card .container {
  position: block;
  text-align: center;
  height: fit-content;
  bottom: 0;
  width: 25vh;
}

.card .button {
  background-color: green;
  color: #ffffff;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  box-sizing: border-box;
  font-size: 1.125rem;
  border: 0px;
  display: inline-block;
  left: 10px;
  right: 10px;
  padding-top: 10px;
  position: absolute;
  bottom: 10px;
}

.card .button:hover,
.card .button:focus { 
  background-color: #164300;
  color: #ffffff;
}

