*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: #fdfdfd;
    display: flex;
    flex-direction: column;
    padding: 20px;
}
nav{
    display: flex;
    justify-content: center;
    
    
}
ul{
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 10px;
}
ul li a{
    cursor: pointer;
    text-decoration: none;
    color: #444144;
    border-radius: 8px;
    padding: 8px;
}
li a:hover{
    background-color: #f88f4e;
}
.container{
    margin: 10px ;
    background-color: #29282e;
    padding: 20px;
    color: aliceblue;
    border-radius: 12px;
}

#About{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}
.card{
    display: flex;
    
    align-items: center;
    gap: 30px;
    flex: 1;

}
.card img{
    height: 100px;
    width: 100px;
    border-radius: 50%;
}
.para{
    flex: 1;
    background-color: #3d3e43;
    padding: 10px;
    border-radius: 12px;
}
h3{
    margin-bottom: 10px;
}
.skill{
    padding: 10px;
    background-color: #f88f4e;
    display: flex;
    align-items: center;
    border: #29282e solid 1px;
    border-radius: 5px;
    height: 80px;
    width: 100px;
    margin: 5px;
    
}
#skills{
    display: flex;
    flex-wrap: wrap;
    
}
.pro img{
    height: 300px;
    width: 100%;
    border-radius: 12px 12px 0 0;
    margin-bottom: 10px;
}
.pro{
    width: 50%;
    padding: 10px;
}
h4{
    margin-bottom: 10px;
}
.pro p{
    margin-bottom: 5px;
}
#Contact{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.Contact{
    height: 200px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    background-color: #fdfdfd;
    color: #29282e;
    border-radius: 12px;
    
}
.Contact i{
    font-size: 100px;
}



@media screen and (max-width:480px){
    #About{
        flex-direction: column;
        margin-bottom: 10px;
    }
    .card{
        margin-bottom: 10px;
    }
    body{
        padding: 10px;
    }
    .para p{
        margin-top: 5px;
    }
    .pro{
        width: 100%;
    }
    #Contact{
        flex-direction: column;
        align-items: center;
    }
    ul{
        gap: 5px; ;
    }
}
@media screen and (max-width:720px){
    #About{
        flex-direction: column;
        margin-bottom: 10px;
    }
    .card{
        margin-bottom: 10px;
    }
    body{
        padding: 10px;
    }
    .para p{
        margin-top: 5px;
    }
    .pro{
        width: 100%;
    }
    
}
