* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body{
  font-family:"Inter", sans serif;
}


.navbar{
    width: 100%;
    color: #fff;
    background-color: #fff;
    box-sizing: border-box;
    padding: 20px 200px;
    position:fixed;
    z-index: 3;
    overflow:visible;


}


.nav-links{
  display: flex;
  flex-direction: row;
  gap: 4px;

}

/* img{
  width: 100px;
  height: auto;
} */

.logo{
  width: 100px;
  height: auto;
}


.overlay{
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity:0;
  z-index:2;
  transition: opacity 0.5s ease-in;

}

.nav-link{
  color: #383838;
  padding: 8px 16px;
  font-size: 14px;

}

.icon{
  color: #383838;
  display: flex;
  width: 37px;
  height: 37px;
  padding: 8px 8px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
}

.icon:hover{
  color: #000000;
  background-color: #f1f1f1;
  border-radius: 4px;
  cursor: pointer;
}

.nav-link:hover{
  color: #000000;
  background-color: #f1f1f1;
  border-radius: 4px;
  font-weight: 500;

}

.hamburger{
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  visibility: hidden;


}

.hamburger-links{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap:12px;
  position: absolute;
  right: 0;
  top: 70px;
  visibility: hidden;

}

.hamburger-link{
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  background-color: #ffffff;
  color: #383838;
  border-radius: 8px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;

}

.header{
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 60%;
}

.hero{
  width: 100%;
  margin: 0;
  padding: 200px 250px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap-reverse;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

.hero-title{
  color: #383838;
  font-size: 24px;
  width:100%;
  font-weight: 600;
}

.emoji{
  display: inline-block;
  animation: helloEmoji 1s infinite;
}

@keyframes helloEmoji {
  0%{
    transform: rotate(0deg);
  }
  50%{
    transform: rotate(20deg);
  }
  100%{
    transform: rotate(0deg);
  }
}

.hero-content, .work-ex{
  font-size: 14px;
  color: #383838;
  width: 100%;
  line-height: 1.8;
}

.logo{
  width: 200px;

}

.my-image{
  width:250px;
  height: auto;

}

.cta{
  width: fit-content;
  background: #1976d2;
  padding: 8px 16px;
  border-style: none;
  color: #ffffff;
  border-radius: 8px;

}

.cursor{
  position: absolute;
  z-index: 1;
  width: 480px;
  right:-110px;
  top: 120px;
  transform: scale(1);
  animation: cursor 1s ease-in-out;
}

.cursor-mobile{
  position: absolute;
  z-index: 1;
  width: 120px;
  right:-90px;
  top: 0px;
  transform: scale(1);
  animation: cursor 1s ease-in-out;
  visibility: hidden;
}

@keyframes cursor {
  from{
    transform: scale(0);
    opacity: 0;
  }
  to{
      transform: scale(1);
      opacity: 1;

  }
}

.profile{
  position: relative;
}


@media screen and (min-width: 576px) and (max-width: 1151px) {

  .header{
    width: 100%;
  }

  .navbar{
    padding: 20px 32px;
  }

  .hero{
    padding: 150px 100px;
    gap: 64px;
  }

  .my-image{
    width: 200px;
  }

  .cursor{
    width: 360px;
    right: -80px;
    top: 100px;
  }

  .nav-link{
    position: absolute;
    visibility: hidden;
  }

  .hamburger{
    position: relative;
    visibility: visible;
  }
}

@media screen and (min-width: 320px) and (max-width: 576px) {

  .header{
    width: 100%;
  }

  .navbar{
    padding: 16px 24px;
  }

  .hero{
    padding: 100px 24px;
    gap: 48px;
  }

  .my-image{
    width: 200px;
  }

  .cursor{
    visibility: hidden;
  }

  .cursor-mobile{

    visibility: visible;
  }

  .nav-link{
    position: absolute;
    visibility: hidden;
  }

  .hamburger{
    position: relative;
    visibility: visible;
  }

  .logo{
    width:200px;
    height: auto;
  }
}
