article div {
  background-color: whitesmoke;
  border-radius: 5px;
  border: 1px solid grey;
  width: 300px;
  padding: 20px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

article div:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

article {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}