@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins",serif;
}
body{
    background-color: #222831;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem auto;
    padding: 0.5rem;
    max-width: 1000px;
}
.navigation ul{
    display: flex;
    list-style-type: none;
    gap: 2rem;
}
.navigation a{
    text-decoration: none;
    color: #eeee;
}
.navigation a:hover{
    color:aqua;
}
hr{
    opacity: 25%;
    
}
.hero {
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 5rem auto;
}
.arrow{
    position: absolute;
    transform: translateY(1.5rem) translateX(-5.5rem);
}
.heroSub{
    display: flex;
    flex-direction: column;
    gap: 0.4;
}
.name{
    font-size: 2.2rem;
    color: #eeee;
}
.title{
    font-size: 3.2rem;
    color:aqua;
}
.heroButtons{
    display: flex;
    margin-top: 0.3rem;
}
.hireMe{
    background-color: darkcyan;
    color: #eeee;
    border-radius: 24px;
    text-decoration: none;
    padding: 0.5rem;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}
.aboutMe{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5rem auto;
    max-width: 1000;
    gap: 10;

}
.textTitle{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 2rem;
}
.aboutName{
    color: #eeee;
}
.aboutTitle{
    color: #00adb5;
}
.aboutMePar{
    text-align: justify;
    color: #eeee;
    font-size: 1rem;
    padding: 1.5rem;
    
}
.contactContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1000px;
}
.contactTitle{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 2rem;
}
.contact{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    gap: 20rem;
}
.contact h3 , .contact a{
    color: #eeee;
    text-decoration: none;
}
.emailAndPhone{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
@media (max-width: 1023px){

    @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;
        }
      }
}