
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@100&family=Dancing+Script&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,300;1,500;1,600;1,700&family=Roboto:wght@300&family=Rubik+Iso&family=Ubuntu:wght@700&display=swap');



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', Arial, sans-serif;

    text-decoration: none;

    
}
img{
    cursor: pointer;
}
a{
    cursor: pointer;
   
    color: rgb(128, 128, 130);
}
body{
    background: #101010;
  
}
/* .white{
    background-color: white;
} */




.flex-div{
    display: flex;
    align-items: center;
}
nav{
    padding: 10px 2%;
    justify-content: space-between;
    box-shadow: 0 0 20px rgba(173, 171, 171, 0.2);
    position: sticky;
    top: 0;
    z-index: 10;
    /* background-image: linear-gradient(to right, #d16ba5, #c777b9, #ba83ca, #aa8fd8, #9a9ae1, #8aa7ec, #79b3f4, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1); */
   
    background: #090909;
  
}




.dot{
   
    margin: 0.5rem 0.4rem;
 
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.dotNight{
    background-color: black;
}
.dotDay{
    background-color: white;
}
.navRight{
 display: flex;
 align-items: center;
  justify-content: space-between;
  

    
}

.navRight button{
    padding: 0.5rem 1.8rem;
    background-color: rgb(159, 234, 159);
    border: 0;
    outline: 0;
    color: white;
    font-weight: 500;
    border-radius: 0.3rem;
    transition: all 1s ;
   
    
}
.navlist button i{
    margin-left: 0.5rem;
    
}

.navRight button:hover{
    background-color: transparent;
    border: 2px solid white;
}



#menuIcon{
    
    width: 40px;
    height: 40px;
    margin: 0rem 1.2rem;
    display: none;
    z-index: 100;
    font-size: 1.5rem;
    margin-top: 1rem;
     color: #21ce2c;

   
}

/* .......................sidebar ...................... */




.sideBar{
    background: #0a0a0a;
    width: 20%;
    position: fixed;
    padding: 1rem 1rem;
    height: 95vh;
    margin: 0.5rem 0.5rem;
   
    box-shadow: 0 0 20px rgba(173, 171, 171, 0.2);
    border-radius: .4rem;

   
}
.sideBarIteam {
    display: flex;
    flex-direction: column;
    padding: 0rem .5rem;
  
   
}

.sideBarIteam p:hover{
    
      transform: scaleY(1.5);
}

.sideBarIteam p{
    transition: all 1s ;
    display: flex;
    align-items: center;
    margin: 1rem 0;
    padding: 0 1rem;
   

   
    
}
.i{
    /* padding-top: 0.5rem; */
    font-size: 1.5rem;
    color: rgb(101, 99, 99);
   
}
.sideBarIteam p a{
    margin-left: 1rem;
   
    font-size: 1.2rem;
    color: rgb(85, 84, 84);

}

h3{
    color: rgb(45, 37, 37);
    font-size: 1rem;
    line-height: 1rem;
    margin-top: .5rem;
    margin-left: .9rem;
}

.insta{
    color: #d62976;
    font-size: 1.7rem;
}

.github{
   color: #0388a6;

    font-size: 1.7rem;
}

.youtube{
    color: #CD201F;
    font-size: 1.7rem;


}

.linked{
    color:  #420ae8;
    font-size: 1.7rem;
}
.stack{
    color: rgb(127, 127, 61);
}








/* ..............main........ */

.main{
    padding-left: 22%;
    padding-right: 1%;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.banner{
    display: flex;
    justify-content: space-between;
    border-radius: .3rem;
    width: 100%;
    height: 15%;
    margin-bottom: 1.5rem;
    
}


.bannerLeft{
   padding: 1rem 1.7rem;
   display: flex;
  align-items: center;
   
}
.bannerLeft img{
    /* padding: 1rem 1rem; */
   
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: transparent;
}
.bannerLeft h3{
     margin-left: 2.5rem;
     /* margin-top: 1.8rem; */
    font-size: 1.5rem;
    color: rgb(85, 84, 84);
}


.project{

    
   font-size: 1.5rem;
   color: rgb(190, 184, 202);
   margin-bottom: 1rem;
    
}









.listIteam{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
   column-gap: 1rem;
   row-gap: 1rem;
}
.listIteam .box{
    /* background-color: white; */
    box-shadow: 0 0 20px rgba(173, 171, 171, 0.2);

    transition-duration: .5s;
    background: #0a0a0a;
    
}

.listIteam .content{
    padding: 1rem .5rem;
}
.listIteam h4{
    font-size: 1rem;
    color: rgb(106, 101, 101);
    margin-bottom: .3rem;

}
.listIteam p{
    font-size: 1rem;
    color: rgb(85, 84, 84);
    margin-bottom: .3rem;
}

.listIteam .box:hover{
    transform: scale(1.1);
}




/* ...........what I know.......... */

.skills-container{

    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px, 1fr));
   column-gap: 1rem;
   row-gap: 1rem;

}

.skills h4{
    margin-top: 3.7rem;
    font-size: 1.3rem;
    color: rgb(224, 217, 217);
    margin-bottom: .3rem;
    margin-left: 0.3rem;

}

.skills-box{
    padding: .5rem;
    margin-top: 1rem;
    box-shadow: 0 0 20px rgb(28, 27, 27);
    border-radius: .3rem;
    /* background-color: rgb(240, 230, 230); */
    background: #0a0a0a;
    height: 35vh;
}
.skills-box h5{
    margin-top: .7rem;
    font-size: 1.2rem;
    color: rgb(85, 84, 84);
    margin-bottom: .3rem;

}
.skills-content{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(3,1fr);
}


.skills-content button{
    margin: .5rem;
    padding: 6px 1px;
    font-size: .6rem;
    color: #e1e5e5;
   background:#282829 ;
    border: 0;
    outline: 0;
    border-radius: 1.9rem;
    font-weight: 600;
    
    
}


.buttons-controllers{
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
}
.buttons-controllers button{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    color: white;
    background:#282829 ;
    padding: .5rem .5rem;
    border: 0;
    outline: 0;
    border-radius: .5rem;
   
  
}
.buttons-controllers button a:hover{
    color: rgb(21, 81, 200);
    font-family: cursive;
    background: white;
    text-decoration: underline;
}
























@media (max-width: 1200px) {
    .sideBar {
        display: none;
    }

   
    .sideBar {
        display: block;
        width: 0;
        height: 0;
        background: rgb(5, 5, 5);
      
        top: 0;
        right: 0;
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-bottom-left-radius: 0;
        transition: width 0.5s, height 0.5s, border-radius 0.5s;
    }

    .sideBar.open {
        width: 100%;
        height: 100vh;
        top: 50px;
        border-bottom-left-radius: 0;
        z-index: 100;
    }
    .sideBar.open {
        display: block;

    }













    #menuIcon {
        display: block; /* Ensure the menuIcon is visible in the smaller screen view */
    }

    .main {
        padding-left: 1%;
        padding: 1%;
    }
}

/* ... Your existing styles ... */














