/* h1 {
  color: aqua;
  font-size: 50px;
} */

.project-preview {
  width: 600px;
  height: 400px;
  position: relative;
}

.generative-design-smooth {
  width: 1255px;
  height: 500px;
  position: relative;
}

.project-thumbnail,
.generative-design-smooth {
  box-shadow: 0px 0px 20px rgba(183, 35, 163, 0.25);
  object-fit: cover;
  width: 600px;
  height: 400px;
  border-radius: 10px;
}

.generative-design-smooth {
  width: 1255px;
  height: 500px;
  margin: 60px auto;
}

.generative-design-smooth img {
  width: 1255px;
  height: 500px;
  margin: 0px auto;
}

.projects-grid {
  display: grid;
  place-items: center;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  row-gap: 60px;
  padding: 200px;
  z-index: 1;
}

.generative-design {
  padding: 0 200px;
}

.overlay-dark,
.overlay-light,
.overlay-green,
.overlay-yellow,
.smooth {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 400px;
  width: 600px;
  opacity: 0;
  transition: .5s ease;
  border-radius: 10px;
}

.smooth {
  height: 500px;
  width: 1255px;
}

.overlay-dark,
.overlay-yellow,
.overlay-light,
.overlay-green {
  background-color: #0b0b0bdf;
}

/* .overlay-light,
.overlay-green {
  background-color: #d2ceceb8;
} */

.project-title {
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  white-space: nowrap;
}

.title-light {
  color: #e5e5e5;
}

/* .title-dark {
  color: #111111;
} */

.blue-shadow {
  text-shadow: 2px 2px 6px rgba(45, 35, 183, 1);
}

.pink-shadow {
  text-shadow: 2px 2px 10px rgba(183, 35, 163, 1);
}

.green-shadow {
  text-shadow: 2px 2px 10px rgb(119, 211, 135);
}

.yellow-shadow {
  text-shadow: 2px 2px 10px rgb(231, 216, 18);
}

.project-preview:hover .overlay-dark {
  opacity: .95;
  box-shadow: 0px 0px 90px rgba(45, 35, 183, 0.8);
}

.project-preview:hover .overlay-light {
  opacity: .95;
  box-shadow: 0px 0px 90px rgba(183, 35, 163, 0.8);
}

.project-preview:hover .overlay-green {
  opacity: .95;
  box-shadow: 0px 0px 90px rgba(119, 211, 135, 0.8);
}

.project-preview:hover .overlay-yellow {
  opacity: .95;
  box-shadow: 0px 0px 90px rgba(231, 216, 18, 0.8);
}

.generative-design-smooth:hover .overlay-light {
  opacity: .95;
  box-shadow: 0px 0px 90px rgba(183, 35, 163, 0.8);
}