
  @import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,200;6..12,400;6..12,500;6..12,700;6..12,800;6..12,900;6..12,1000&display=swap');

  :root{
   --primary:#12bdff;
   --primary-hover:#0c8ec2;
   --dark-priamary: #1b1f24;
   --nunito:'Nunito Sans', sans-serif;
  }
*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
 }
 
body{
   font-family: var(--nunito);
}

header{
   background-color: var(--dark-priamary);
   padding:20px;
   color: white;

   display: flex;
   justify-content: space-evenly;
   align-items: center;
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
}

header .logo {
   color: var(--primary);
   font-weight: bold;
   letter-spacing: 2px;
   text-decoration: none;
 
 }
 

header ul{
   list-style: none;
   display:flex;
}
header ul li{
   margin-right: 20px;
}

header ul li a{
   color: white;
   text-decoration: none;
   font-weight: 600;
}
header ul li a:hover{
   color: var(--primary);
}

section.hero-section{
   background-color: var(--dark-priamary);
   display: flex;
   color: white;
   align-items: center;
   padding: 100px 120px 0 240px;
   /* height: 600px; */
}
.hero-section__title{
   font-size: 48px;
   font-weight: 900;
}
.hero-section__title span{
   color: var(--primary);
}
.hero-section__desc{
   color: azure  ;
}

.social-icons{
   margin: 20px 0;
}
.social-icons li{
   margin-right: 15px;
  
}

ul.social-icons{
   list-style: none;
   display: flex;
}

.social-icons li a{
   text-decoration: none;
   color: white;
}

.social-icons li a i.fa-linkedin:hover{
   color: #0072b1 ;
   
}
.social-icons li a i.fa-instagram:hover{
   color:#feda75 ;
   
}
.btn{
   padding: 10px 20px;
   border-radius: 3px;
   cursor: pointer;
   font-family:var(--nunito);
}

/* header button*/
.btn-dark-outlined{
   background-color: var(--dark-priamary);
   border: 1px solid var(--primary);
   color: var(--primary);
   border-radius: 5px;
   font-weight: bold;
}

.btn-dark-outlined:hover{
   background-color: var(--primary);
   color: white;
}

.btn.btn-primary{
   background-color: var(--primary);
   font-weight: 600;
   color: var(--dark-priamary);
   border: none;
   border-radius: 5px;
}
.btn.btn-primary:hover{
   background-color: var(--primary-hover);
}
 
.hero-buttons button{
   margin-right: 10px;
}

/* About me */
.about-section{
   background-color:#22282f;
   color: white;
   padding: 90px;

   display: flex;
   justify-content: center;
}

.about-section img{
   width:350px;
   height: 350px;
   border-radius: 50%;
   border: 3px solid var(--primary);
   box-shadow: 0px 0px 10px var(--primary);
   /* padding: 50px; */
}

.about-section--desc{
   margin-left: 100px;
   max-width: 450px;
}

.about-section--desc h4{
   font-size: 30px;
   font-weight: 900;
}
.about-section--desc ul{
   list-style: none;
   margin: 10px 0px;
}
.about-section--desc li {
   margin-bottom: 8px;
   color: grey;
}

.about-section--desc li strong{
   color: white;
}
.about-section--desc a{
   text-decoration: none;
   color:grey;
}
.about-section--desc a:hover{
   color: var(--primary);
}

.about-section--desc h4 span{
   color: var(--primary);
}

/* work-section */
.work-section{
   background-color: var(--dark-priamary);
   color: white;
   padding: 60px;
   text-align: center;
}
.work-section__title{
   font-size: 30px;
   font-weight: 900;
   margin-bottom: 40px;
}
.work-section__title span{
   color: var(--primary);
}

.work-section-box{
   background-color:#22282f ;
   padding: 30px;
   max-width: 300px;
   text-align: left;
   cursor: pointer;
   margin-right: 40px;

}
.work-section-items{
   display: flex;
   justify-content: center;
   
}
.work-section-box:hover{
   background-color: #14171c;
}
.work-section-box p{
   color:grey;
   font-size: 14px;
}
.work-section-box a{
   text-decoration: none;
   color:#feda75;

}
.work-section-box__desc{
   margin-top: 20px;
   margin-bottom: 10px;
}
.work-section-box__desc p{
   padding-top: 5px;
}
.work-section-box__icon{
   background-color: var(--primary);
   padding: 10px;
   border-radius: 50px;
}
.work-section-box__icon:hover{
   background-color: var(--primary-hover);
}

/* contact section */
.contact-section{
   background-color: #14171c;
   padding: 40px;
   color: white;
   text-align: center;
}
.contact-section h4{
   font-size: 30px;
   margin: 20px 0;
   font-weight: 900;
}
.contact-section h4 span{
   color: var(--primary);
}
.contact-section form div input,textarea{
   padding: 5px 10px;
   outline: none;
   width: 350px;
   border: none;
   background-color:#c4c4c4;
   border-radius: 2px;
   margin-bottom: 10px;
   resize: none;
   font-family: var(--nunito);
}

/* footer */
footer{
   background-color: var(--dark-priamary);
   color: white;
   padding: 20px 0;
   text-align: center;
   font-size: 12px;
}
footer a{
   text-decoration: none;
   color: var(--primary);
}

/* Media queries */
@media only screen and (max-width: 600px) {
   header{
      flex-direction: column;
   }
   header *{
      margin-bottom: 5px;
   }

   /* hero section */
   section.hero-section{
      flex-direction: column;
      padding: 40px;
      padding-top: 190px;
      position: unset;

   }
   section.hero-section img{
      display:none;
   }

   /* about-section */
   section.about-section{
      flex-direction: column;
      padding: 40px;
      align-items: center;
   }
   .about-section--desc{
      margin-left: 0;
      margin-top: 30px;
   }
   .about-section img{
      width: 300px;
      height: 300px;
   }

   /* work-section */
   .work-section{
      padding: 30px 10px;
   }
   .work-section-items{
      flex-direction: column;
      align-items: center;
   }
   .work-section-box{
      margin-bottom: 20px;
      margin-right: 0;
      width: 100%;
   }

   /* contact-section */
   .contact-section form div input,textarea{
      width:100%
   }
 }