body{
    margin: auto;
    font-family: poppins;

}
/* Header section */
.header{
    text-align: center;
    background-image: url(/assets/sunset.jpg);
    background-size: cover;
    
    color: wheat;
    padding-bottom: 100px;
    padding-top: 80px;

}
.header img{
    border-radius:50% ;
    
    
}
#nm{
    font-size: 45px;
    font-weight: 100;
}
#des{
    font-size: 35px;

}
/* About me section */

.aboutme{
    display: flex;
   
}
.abt-img{
    width: 50%;
    background-image: url(/assets/ba2.png);
    background-size: cover;
}
.abt-txt{
    width: 50%;
}
.abt-img img{
    border-radius: 20%;
    width: 50%;
}
/* My projects */
.myProjects{
    width: auto;
    background-color:#20abab;
    padding-top: 50px;
    padding-bottom: 50px;
    
}
.projo{
    display: flex;
    width: 80%;
    margin-left: 10%;
    justify-content: space-evenly;
    text-align: center;
}
.pr1,.pr2,.pr3{
    border: solid black 5px;
    padding: 40px;
    margin: 10px;
    width: 30%;
    border-radius: 19px;
}
button{
    
        background-color: white;
        border:2px solid #f25d2a;
        padding: 6px;
        border-radius: 8px;
        font-size: 24px;
        color: #f25d2a;
    
}
button:hover{
    background-color: #f25c2a;
    border: none;
    color: white;




}
/* Footer styling starts here */
footer {
    text-align: center;
    font-size: 28px;
    font-weight: 100;
    padding-top: 70px;
    background-color: #000F45;
    color: wheat;
    padding-bottom: 70px;
}