/* *{
    margin:0;
    padding: 0;
    box-sizing:border-box;
} */
a{
    text-decoration:none;
}
ul{
    list-style: none;
}
body{
    margin: 0;
    padding: 0;

}
#Project{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin:50px 0px;
}
.project-heading{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}
.project-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}
.project-box{
    width: 330px;
    padding: 15px;
    /* border: 0.5px solid #30cdc0ee; */
    margin: 20px;
}
.project-box img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;

}
@media(max-width:740px)
{
    .project-box{
        width: 80%;
    }
}
