*{
    margin:0px;
    padding:0px;
    box-sizing:border-box;
    background-color: black;
    cursor: pointer;
}
nav{
    padding:20px;
}
ul{
    display:flex;
    justify-content: space-evenly;
    align-items: center;
}
li{
    list-style-type: none;
    color:white;
    font-size: 20px;
}
li:hover{
    color:aqua;
}
a{
    text-decoration: none;
}
.skill{
    text-align:center;
    color:white;
    font-size:50px;
}
.heading{
    display:flex;
    justify-content: space-evenly;
    margin-top:20px;
    color:white;
}
.sk{
    margin-top:30px;
    color:white;
     display: flex;
     justify-content: space-evenly;
     align-items: center;
    align-content: center; 
}
.fig{

    border:3px solid aqua; 
    width: 400px;
    height:500px;
}
.cd{
    display: flex;
    flex-direction: column;    
    line-height: 80px;
}
@media only screen and (max-width:600px){
    .cd>li{
        font-size: 15px;
    }
    .heading{
        margin-left: 20px;
        font-size: 12px;
    }

}
hr{
    color:white;
    height:5px;
    background-color: white;;
}