*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins' ,sans-serif;
}
header{
    height: 100vh;
    width: 100%;
    background: url(background.png) no-repeat center;
    background-position: center;
}

header nav{
    position: fixed;
    left: 0;
    top:0;
    width: 100%;
    z-index: 2000;
   
}
nav .navbar{
    width: 90%;
   
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px auto 20px auto;
}
nav .navbar .logo{
   height: 80px;
   width: 150px;
}
.logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.menu{
    display: flex;
}
.menu li{
    list-style: none;
    margin: 40px;
}
.menu li a{
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
}
.menu li a:hover{
    color: #007bff;
}
.search-box{
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 5px 10px;
    margin-left: 20px;
}
.search-box input[type="text"]{
    border: none;
    outline: none;
    padding: 5px;
    font-size: 16px;
}
.search-box i{
    color: #333;
}
.content{
    position: absolute;
    top: 33%;
    left: 15%;
}
.content :hover{
     color:navy;
}
.text{
      font-size: 27px;
      color: #938989;
}
.name{
    font-size: 80px;
    font-weight: 600;
    color: #938989;
    
  
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.job{
     font-size: 40px;
    color: #938989;
    display: flex;
    padding: 12px;
}
.typing{
    color: navy;
    margin-left: 13px;
    font-family: 'Times New Roman', Times, serif;
    animation: typing 10s steps(24) infinite;
    overflow: hidden;
    white-space: nowrap;
    border-right: 4px solid ;
    /* background-color: rgb(241, 180, 180); */

}
@keyframes typing{
    0%{
        width: 0ch;
    }
    50%{
        width: 24ch;
    }
    100%{
        width: 0ch;
    }
}
.buttons{
       margin: 20px 0 0 50px;
       color: red;

}
.buttons button{
    color:white;
    margin: 0 20px ;
    font-size: 18px;
   outline: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background: linear-gradient(to right, #ff105f, #ffad06);
}
.boy img{
   height: 95%;
   position: absolute;
   right: 80px;
   bottom: 40px;
   flex-direction: column;
}
.icon{
    position: absolute;
    right: 40px;
    bottom: 40px;
    flex-direction: column;
    display: flex;
    gap: 12px;
}
.fa-facebook{
    color: blue;
}
.fa-instagram{
    color: pink;
}
.fa-linkedin{
    color: skyblue;
}
.fa-twitter{
    color: black;
}


  



