
#project {
  margin-bottom: 1rem;
  position: relative;
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 22, 0.55) 0%,
    rgba(10, 14, 22, 0.22) 100%
  );
  backdrop-filter: saturate(120%) blur(10px);
  -webkit-backdrop-filter: saturate(120%) blur(10px);

  border: 1px solid rgba(150, 200, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 30px rgba(6, 22, 50, 0.35);
}

#project::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    1200px 420px at 70% 18%,
    rgba(90, 140, 255, 0.2),
    transparent 60%
  );
  mix-blend-mode: screen; 
}

#desc code,
#desc details,
#desc summary {
  color: antiquewhite;
}

#title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#github-logo {
  height: 30px;
  width: auto;
}

#tech-stack {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.8rem;
  margin: 0.6rem 0 0.2rem;
  height: 24px;
}

#tech-stack a {
  height: 100%;
}
#desc code,
#desc details,
#desc summary {
  color: cornsilk;
  font-size: 0.95em;
}
#desc summary {
  cursor: pointer;
}
