.cont {
  display: flex;
  gap: 30px;
  padding: 20px;
  flex-wrap: wrap;
}

/* CARD */
.card {
  width: 300px;
  height: 300px;

  background-color: white;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;

  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: black;
  text-decoration: none;

  transition: transform 0.3s, box-shadow 0.3s;

  border: 3px solid black;
}
.card img {
  width: 250px;
  height: 250px;
}
footer { 
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgb(0, 0, 0); 
  color: white; 
  text-align: center; 
  margin-top: 10px;
  font-size: large;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}
