@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
 }
body {
    background-color: #222831;
 }


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem auto;
    padding:0 0.5rem; 
    max-width: 1200px;
 }
 
 .navigation  ul{
    display: flex;
    list-style: none;
    gap: 2rem;
 }
    
.navigation a {
    text-decoration: none;
    color: #eeeeee;
 }

 .navigation a:hover {
    color: #00adb5;
 }

 hr {
    opacity: 10%;
 }
 .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5rem auto;
    max-width: 1200px;
 }

 .arrow {
    position: absolute;
    transform: translateX(-5.5rem) translateY(1.5rem);
 }

 .herosub {
    display: flex;
    flex-direction : column;
    gap: 0.5rem;
 }

 .name {
    font-size: 3rem;
    color: #eeeeee;
 }

 .heroBtns {
    display:flex;
    gap: 1rem;
    margin-top: 1.5rem;
 }

 .title {
    font-size: 4rem;
    color: #00adb5;
 }

 hireMe {
    background-color: #00adb5;
    color: #eeeeee;
    padding: 0.5rem 1rem;
    border-radius: 24px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    text-decoration: none;
 }

.voidtrack {
    background-color: rgba(57, 62, 70, 0.75);
    color: #eeeeee;
    padding: 0.5rem 1.5rem;
    border-radius: 24px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(4px);
 }

.aboutMe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    gap: 10rem;
    margin: 5rem;
 }

.textcontaner {
    display: flex;
    flex-direction: column;
}

.aboutName {
    color: #eeeeee;
}

.abouttitle {
    color: #00adb5;
}

.aboutMePar {
    text-align: justify;
    color: rgba(238, 238, 238, 0.75)
}

footer {
    color: #eeeeee;
    padding: 2rem;
    text-align: center;
}



 .heroImg {
    width: 50%;
 }

 .heroImg img {
    width: 100%;
 }
 
 @media (max-width: 1023px) {
    header {
      margin-left: 1rem;
      margin-right: 1rem;
    }
    .hero {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .heroImg {
      width: 400px;
    }
    .name,
    .title {
      font-size: 2rem;
    }
    .arrow {
      display: none;
    }
    .aboutMe {
      flex-direction: column-reverse;
      align-items: center;
      gap: 2rem;
    }
    .textContainer {
      align-items: center;
      margin: 0rem 5rem;
      gap: 1rem;
    }
    .aboutName,
    .aboutTitle {
      font-size: 2rem;
    }
    .light {
      width: 60px;
    }
    .aboutMeImg {
      width: 400px;
    }
    .works {
      padding: 0;
    }
    .worksContainer {
      padding: 5rem 0rem;
      gap: 3rem;
    }
    .projectTitle {
      margin-left: 1rem;
    }
    .works ul {
      flex-direction: column;
      gap: 1rem;
    }
    .contactContainer {
      margin: 10rem 5rem;
      gap: 2rem;
    }
    .contact {
      flex-direction: column;
      gap: 1rem;
      margin-right: 0;
    }
  }