
 nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;

 }
#header{
   width: 100%;
   height: 700px;
   background-image: url(background.jpg);
   background-size: cover;
   background-position: center;
   
}
.container{
   padding: 10px 10px;
   overflow: hidden;
}
nav{
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
}
.logo{
   width: 20px;
   height: 20px;

}
nav ul li {
   text-decoration: none;
   display: inline-block;
   list-style: none;
   margin: 20px 20px;
}
nav ul{
   border-radius: 30px;
   background-color: antiquewhite;
   text-decoration: none;
   align-items: right;
   /* margin-right: 100; */
 }
a{
   margin-right: 10px;
  text-decoration: none;
 font-size:  20px;
}
  
h{
   background-color: bisque;
   font-size: 30px;
   margin-top: 250px;
}
p{
   background-color: burlywood;
   font-size: 30px;
   text-decoration: aliceblue;
}
p1{
   font-size: 25px;
}
p2{
   font-size: 20px;
}
h{
   font-size: 20px;
}
h1{
   font-style: bold;
}
ul{
  
   text-decoration-color: aqua;
}
.header-text {

    margin-top: 12%;
    font-size: 75px;
    margin-left: 70px;
}
p9{
   font-size: 40px;
}
nav ul li a{
   color: black;
   text-decoration: none;
   font-size: 18px;
   position: relative;
}
nav ul li a::after{
   Content:'';
   width: 0;
   height: 3px;
   background: #ff004f;
   position: absolute;
   left: 0;
   bottom: -6px;
}
nav ul li a:hover::after{
   width: 100%;
}
h1{
   font-size: 80px;
}
#check{
   display:none;
}




/* media query for small screen like mobile */



@media  (max-width: 781px) {
   /* CSS code for responsiveness at 810px or lower */
   /* For example, you can modify the layout, font size, or spacing */
 
   /* Example: Adjust the navigation menu for smaller screens */
  nav ul li {
      margin-top: 10px;
      display:none;
      /* margin-right: 80%; */
      width:100vh;
      text-align: center;
     flex-direction:column;
   
   }
   #check:checked~ul li{
      margin-top: 0px;
      display: block;
      text-align: left;
   
   }

    nav ul.show {
      display: block;
    }
 
   li {
     margin-bottom: 10px;
   }
 
   li a {
     font-size: 16px;
     padding: 5px;
   }
   .header-text{
      margin-top: 150px;
      font-size: 30px;
      margin-left: 20px;
   }
   h1{
      font-size: 1%;
   }
   .skill img {
      width: 64px; /* Adjust the size as needed */
      height: 64px;
    }

   }
   
 



 /* media query for larger screen  */


 @media (min-width:845px){
   nav ul li {
      display: inline-block;
     /* flex-direction:column; */
   }
 
   li {
     margin-bottom: 10px;
   }
 
   li a {
     font-size: 20px;
     padding: 5px;
   }
   .header-text{
      font-size: 90px;
   }
   #checkbtn{
      float:right;
      display: none;
   }
   #check{
      display: none;
   } 

}

h1{
   font-size: 50px;
}

.skills-section {
   display: flex;
   flex-wrap: wrap;
 }
 
 .skill {
   width: 200px;
   margin: 10px;
   text-align: center;
 }
 
 .skill h3 {
   margin-top: 0;
 }
 
 .skill-bar {
   width: 100%;
   height: 10px;
   background-color: #f2f2f2;
   border-radius: 5px;
   overflow: hidden;
 }
 
 .skill-progress {
   height: 100%;
   background-color: #4caf50;
   width: 0;
   animation: skillProgress 2s ease-in-out;
 }
 
 .skill-percent {
   display: block;
   margin-top: 5px;
 }
 
 .advance-progress {
   width: 90%;
 }
 
 .beginner-progress {
   width: 30%;
 }
 
 .intermediate-progress {
   width: 50%;
 }
 
 @keyframes skillProgress {
   0% {
     width: 0;
   }
   100% {
     width: var(--progress-width);
   }
 }



 /* for skill section  */
 #skills {
   margin-left: 100px;

 }
 
 .skill {
   /* background-color: aqua; */
   display: inline-block;
   text-align: center;
   margin: 10px;
 }
 
 .skill img {
   width: 100px; /* Adjust the size as needed */
   height: 80px;
 }
 
 .skill span {
   display: block;
   margin-top: 5px;
   font-size: 14px;
 }
 
 