.project-card {
  display: flex;
  flex-direction: column;
  max-width: 40rem;
  height: fit-content;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: white;
  cursor: pointer;
}

.project-image-wrapper {
  position: relative;
  width: 35rem;
  height: 20rem;
  background-color: #ccc;
}

.project-image {
  width: 100%;
  height: 100%;
  display: block;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.project-image-wrapper:hover .project-overlay {
  opacity: 1;
}

.project-content {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.project-title {
  font-size: 1.6rem;
  margin: 0;
}

.project-stack {
  font-size: 1.4rem;
  margin: 0.5rem 0 0 0;
}

