h1, h2, p  {
  color: white;
}

.project-section {
  margin: 40px auto;
  max-width: 800px;
}

.project-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.project-card:hover {
  transform: scale(1.02);
}

.project-card img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.project-card a {
  font-size: 1.1rem;
  font-weight: bold;
  color: #1a202c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.project-card a:hover {
  color: #2b6cb0;
}
#background-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
  filter: brightness(80%) contrast(110%);
}
