.project{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.project:hover{
  transform: scale(1.05);
  transition: transform 0.8s ease;
}
.project button{
  padding: 8px 16px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
.project button:hover{
  background-color: #0056b3;
}
.project img{
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.project h2{
  margin: 0;
  font-size: 24px;
}
.project p{
  text-align: center;
  font-size: 16px;
  color: #555;
}
