 body {
     font-family: 'Satoshi', sans-serif;
     -webkit-font-smoothing: antialiased;
 }

 .nav-link {
     position: relative;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     width: 0;
     height: 1px;body {
  font-family: sans-serif;
  margin: 0;
  color: #fff;
  background: #0f0f0f;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem;
}

.header,
.footer {
  background: #0f0f0f;
}

.header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .hero {
  margin-top: 4rem;
}

.header .hero h2 {
  font-size: 3rem;
  font-weight: bold;
}

.about {
  background: #fff;
  color: #000;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-links a {
  margin-right: 1rem;
}

.work-grid .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.work-list ul {
  list-style: none;
  padding: 0;
}

.work-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #333;
  padding: 1rem 0;
}

.footer h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info a {
  display: inline-block;
  margin-right: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

     bottom: -2px;
     left: 0;
     background-color: currentColor;
     transition: width 0.3s ease;
 }

 .nav-link:hover::after {
     width: 100%;
 }
 @keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fadeInUp {
  animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}