.body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Courier New", Courier, monospace;
}

.heading {
  font-size: 2rem;
  color: #b1bb10;
  font-weight: 600;
  padding: 30px;
}
.heading header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
}
@media (max-width: 600px) {
  .heading header {
    flex-direction: column;
    gap: 5px;
  }
}
.heading .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 20px;
  padding: 20px;
}
.heading #logoPfp {
  width: 50%;
}
.heading a {
  position: relative;
  padding: 4px;
  text-decoration: none;
  color: #b1bb10;
  margin: 0 50px;
  transition: all 0.3s ease-in-out;
}
.heading a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #ffb9c2;
  transition: width 0.3s ease-in-out;
}
.heading a:hover::after {
  width: 100%;
}
.heading a:hover {
  color: #2c5004;
}

.biography {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
  padding: 20px;
  flex-direction: row;
  gap: 20px;
}
.biography .bio-img {
  width: 40%;
  max-width: 500px;
}
.biography #description {
  width: 50%;
  padding: 20px;
  font-size: 1.2rem;
  color: #b1bb10;
  line-height: 1.5;
  text-align: justify;
  font-weight: bold;
}
@media (max-width: 600px) {
  .biography {
    flex-direction: column;
    gap: 10px;
  }
  .biography .bio-img {
    width: 100%;
    max-width: none;
  }
  .biography #description {
    width: 100%;
  }
}

#about-site {
  background-size: 40px 40px;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.29) 1px, rgba(0, 0, 0, 0) 1px);
}

.typing {
  font-size: 2rem;
  font-weight: bold;
  color: #b1bb10;
  display: inline-block;
  position: relative;
  white-space: pre;
}

.typing::after {
  content: "|";
  position: absolute;
  right: 0;
  animation: blink 0.7s steps(2, start) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
.masonry {
  column-count: 3;
  column-gap: 10px;
}

.masonry img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  display: block;
}

.masonry img:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

@media (max-width: 800px) {
  .masonry {
    column-count: 2;
  }
}
@media (max-width: 500px) {
  .masonry {
    column-count: 1;
  }
}
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
}

.hidden {
  display: none;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-img {
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
  max-width: 100%;
  max-height: 80vh;
}

.lightbox-title {
  margin: 0 0 0.5rem;
}

.lightbox-desc {
  margin: 0 auto;
  max-width: 50ch;
  word-wrap: break-word;
  text-align: center;
}

.thumb {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  display: inline-block;
}

.thumb:focus {
  outline: none;
}

#mute-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2000;
}

/*# sourceMappingURL=style.css.map */
