.slide-down {
  animation: slideDown 0.3s ease-out forwards;
}
body {
  scroll-behavior: smooth;
}
#about-image {
  background-image: url(./images/bg-7.png);
  height: 400px;
  width: 100px;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
#page1 {
  background-image: url(./section.svg);
}
.bg-set {
  position: absolute;
  width: 100px;
  object-fit: contain;
  height: 100px;

  /* border-radius: 50%; */
  opacity: 0.6;
  z-index: 0;

  pointer-events: none;
}
.bg-set2 {
  width: 100px;
  object-fit: contain;
  height: 100px;
  opacity: 0.6;
  z-index: 0;

  pointer-events: none;
}
@media (max-width: 768px) {
  .bg-set,
  .bg-set2 {
    width: 40px;
    height: 40px;
  }
}

#page5 {
  /* background-image: url(./section.svg); */
}
#hero-sec img {
  height: 220px;
  filter: invert(0.1);
  position: absolute;
  z-index: -1;
  top: 10px;
  left: 60px;
}
#bottomimage {
  height: 200px;
  filter: invert(0.1);
  position: absolute;
  top: -40px;
  right: 150px;
  z-index: -2;
}

@media (max-width: 768px) {
  #hero-sec img {
    height: 150px;
    top: 150px;
    left: 10px;
  }
  #bottomimage {
    height: 150px;
    top: -20px;
    right: 50px;
  }
}
/* ///////////////
 */
.window-bar {
  height: 1.5rem;
  background-color: #1e293b;
  border-bottom: 1px solid #334155;
  border-radius: 0.75rem 0.75rem 0 0;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  gap: 0.5rem;
}
.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}
.red {
  background-color: #f87171;
}
.yellow {
  background-color: #facc15;
}
.green {
  background-color: #4ade80;
}
.code-box {
  background-color: #0f172a;
  color: #f1f5f9;
  padding: 1.5rem;
  border-radius: 0 0 0.75rem 0.75rem;
  overflow-x: auto;
}
.keyword {
  color: #f472b6;
} /* pink */
.string {
  color: #facc15;
} /* yellow */
.prop {
  color: #38bdf8;
} /* light blue */
.func {
  color: #34d399;
} /* green */
.bool {
  color: #f87171;
} /* red */
.indent {
  padding-left: 2rem;
  display: block;
}
