* {
    
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}

.navbar {
    line-height: 200%;
    background-color: black;
    display: flex;
    justify-content: space-between;
    
    
}
.menu {
    line-height: 200%;
    display: flex;
    list-style: none;
    gap: 20px; /* Add some space between menu items */
}


 a:hover{
    color: antiquewhite;
    
 }
a {
    color: white;
    text-decoration: none;
    padding: 20px 25px; /* Add some padding to the links */
    transition: background-color 0.3s ease-in-out;
}
h1:hover{
    color: skyblue;
}

.menu-wrapper {
    display: none;
    cursor: pointer;
    
   
}

.ham {
    
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: aliceblue;
}




/* styling about me*/
.abtme{
    color: black;
    text-align: center;
    background-color: whitesmoke;
    margin-left:30% ;
    margin-right: 30%;
    margin-top: 1%;
}
.abtme:hover{
    color: rgba(0, 0, 0, 0.489);
}
em:hover{
    color: skyblue;
}

.bt{
    background-color: black;
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    display: inline-block;
    font-size: 16px;
    transition-duration: 0.4s;
}
.bt:hover{
   
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
img{
    border-radius: 50%;
    max-width: 50px;
    max-height: 50px;
    margin-left: 2%;
    margin: auto;
}

/* This is styling section for myskills */

.myskills{
    color: black;
    text-align: center;
    background-color: whitesmoke;
    margin-left:30% ;
    margin-right: 30%;
    margin-top: 10%;
}


.myskills:hover{
    color: rgba(0, 0, 0, 0.489); 
}

table{
    border-color: rgba(0, 0, 0, 0.489) ;
   
}
th:hover{
    color: skyblue;
}



/*More about me */
.more{
    color: black;
    text-align: center;
    background-color: whitesmoke;
    margin-left:30% ;
    margin-right: 30%;
    margin-top: 10%;
}

.more:hover{
    color: rgba(0, 0, 0, 0.489);
}
.bt1{
    background-color: black;
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    display: inline-block;
    font-size: 16px;
    transition-duration: 0.4s;
}
.bt1:hover{
   
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.form{
    margin-left:30% ;
    margin-right: 30%;
}
#feedbackForm{
    margin-left:35% ;
    margin-right: 30%;
    display: none;
}

#su{
    background-color: black;
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    display: inline-block;
    font-size: 16px;
    transition-duration: 0.4s;
}

#su:hover{
   
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

#msg{
    text-align: left;
    text-overflow: hidden;
}


footer{
   background-color: whitesmoke
}

.icon{
    margin-left: 5%;
}
.icon2{
margin-left: 5%;
}

.icon3{
    margin-left: 5%;
}
.icon4{
    margin-left: 45%;
}
.icon5{
    margin-left: 5%;
}
.icon6{
    margin-left: 5%;
}






@media (max-width: 500px) {

   
    .abtme{
        border-radius: 5%;

        margin-top: 6%;
        margin-left: 2%;
        margin-right: 2%;
    }
    .myskills{
        border-radius: 5%;

        margin-top: 25%;
        margin-left: 2%;
        margin-right: 2%;
    }

    .more{
        border-radius: 5%;

        margin-top: 25%;
        margin-left: 2%;
        margin-right: 2%;
    }

    .navbar{
        position: fixed;
        
    }

    

    .menu {
        opacity: 0;
        position: fixed;
        left: -100%;
        top: 0px;
        gap: 0;
        flex-direction: column;
        background-color: black;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        
    }

    .menu-wrapper {
        display: block;
        color: aliceblue;
    }

    .menu-wrapper.active .ham:nth-child(2) {
        opacity: 0;
    }

    .menu-wrapper.active .ham:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-wrapper.active .ham:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .menu.active {
        opacity: 1;
        left: 0;
    }

    .L {
        margin: 15px 0;
    }

    #msg{
        text-align: left;
        text-overflow: hidden;
    }
}