body {
  @import url("https://fonts.googleapis.com/css2?family=Computer+Modern+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
  font-family: "Computer Modern Serif", serif;
  font-size: 1.5rem;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  color: #ffffff;
  background-color: #38373a;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 1.3rem;
  }
}

main {
  padding-top: 1rem;
  flex: 1;
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  color: #ff8b2b;
}

ul {
  padding-left: 0;
  list-style: none;
}
ul li {
  margin-bottom: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  background-color: #38373a;
  z-index: 100;
  transition: background-color 0.3s ease;
  margin: 2rem -100vw 2rem -100vw;
  padding: 0 100vw 0 100vw;
}
.site-header.scrolled {
  background-color: #2a292c;
}
@media (max-width: 768px) {
  .site-header {
    margin: 0rem -100vw 0rem -100vw;
    padding: 0 100vw 0 100vw;
    background-color: #2a292c;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.navbar .nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  color: #ffffff;
}
.navbar .nav-emoji {
  width: 28px;
  height: 28px;
  border-radius: 0%;
}
.navbar .social-icons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
.navbar .social-icons a {
  display: inline-block;
  width: 22px;
  height: 22px;
  padding: 0px 0px 0.5rem 0px;
  transition: all 0.3s ease;
}
.navbar .social-icons a:hover {
  transform: translateY(-2px);
}
.navbar .social-icons a img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  filter: brightness(0) invert(100%) saturate(100%) opacity(1);
  transition: filter 0.3s ease;
}
.navbar .social-icons a:hover img {
  filter: invert(59%) sepia(46%) saturate(1050%) hue-rotate(339deg) brightness(102%) contrast(101%);
}
@media (max-width: 768px) {
  .navbar .nav-brand {
    font-size: 1.3rem;
  }
  .navbar .nav-emoji {
    width: 24px;
    height: 24px;
  }
  .navbar .social-icons a {
    width: 20px;
    height: 20px;
  }
}

.hero-section {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  padding: 17vh 0rem 0rem 0rem;
}
.hero-section .bio {
  max-width: 1000px;
  font-size: 2rem;
  line-height: 1.4;
  text-align: left;
  color: #ffffff;
}
@media (max-width: 768px) {
  .hero-section .bio {
    font-size: 1.3rem;
  }
}

.link {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px dotted #ffffff;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.link:hover {
  color: #ff8b2b;
  text-decoration: none;
  border-bottom: 1px dotted #ff8b2b;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger .reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal-stagger.visible .reveal-item {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.visible .reveal-item:nth-child(1) {
  transition-delay: 0.1s;
}
.reveal-stagger.visible .reveal-item:nth-child(2) {
  transition-delay: 0.2s;
}
.reveal-stagger.visible .reveal-item:nth-child(3) {
  transition-delay: 0.3s;
}
.reveal-stagger.visible .reveal-item:nth-child(4) {
  transition-delay: 0.4s;
}
.reveal-stagger.visible .reveal-item:nth-child(5) {
  transition-delay: 0.5s;
}
.reveal-stagger.visible .reveal-item:nth-child(6) {
  transition-delay: 0.6s;
}
.reveal-stagger.visible .reveal-item:nth-child(7) {
  transition-delay: 0.7s;
}
.reveal-stagger.visible .reveal-item:nth-child(8) {
  transition-delay: 0.8s;
}
.reveal-stagger.visible .reveal-item:nth-child(9) {
  transition-delay: 0.9s;
}
.reveal-stagger.visible .reveal-item:nth-child(10) {
  transition-delay: 1s;
}
.reveal-stagger.visible .reveal-item:nth-child(n+11) {
  transition-delay: 1.1s;
}

.content-section {
  display: grid;
  grid-template-columns: 1fr 4fr;
  margin-bottom: 5rem;
  scroll-margin-top: 6rem;
}
.content-section .section-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  text-align: left;
}
.content-section .section-content {
  font-size: 1.3rem;
}
.content-section .section-content > *:first-child {
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .content-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .content-section .section-header h2 {
    text-align: left;
    padding-right: 0;
    margin-bottom: 0.5rem;
  }
  .content-section .section-content {
    font-size: 1.2rem;
    padding-right: 0;
  }
}

.site-footer {
  background-color: #2a292c;
  margin: 2rem -100vw 0 -100vw;
  padding: 0 100vw 0 100vw;
}
.site-footer .footer-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 0rem;
}
.site-footer .footer-content .copyright {
  font-size: 1rem;
  color: #ffffff;
}
@media (max-width: 768px) {
  .site-footer .footer-content {
    padding: 1rem 0rem;
  }
  .site-footer .footer-content .copyright {
    font-size: 0.9rem;
  }
}

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