/* Project grid */
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.project {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

.project img {
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.project h2 {
  color: #0b5091;
  font-size: 1.5rem;
  margin-top: 0;
}

.project p {
  font-size: 1.25rem;
  line-height: 1.5;
}
