html, body{
    margin: 0;
    height: 100%;
    box-sizing: border-box;
    display: inline-flex;
    box-sizing: border-box;
    flex-direction: column;
}
main{
    width: 100%;
    box-sizing: border-box;
    h2{
        padding: 15px 0;
    }
}
.project-container{
    display: flex;
    width: 75%;
    flex-wrap: wrap;
}
.project-content{
    width: 25%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    gap: 10px;
        padding: 5px 10px;
        margin: 10px auto;
        border-radius: 10px;
        box-shadow: 1px 2px 5px antiquewhite;
    img{
        width: 100%;
        border-radius: 12px;
    }
    svg{
        background-color: transparent;
        border-radius: 50px;
        padding: 5px;
    }
}
.project-item {
    display: flex;
    width: 100%;
    flex-direction: column;
    margin: 0 auto;
    h4{
        width: 100%;
        padding: 10px 0;
        white-space: nowrap;
        font-size: 1.8em;
    }
    p{
        width: 100%;
        font-size: 1.2em;
    }
}
/*  */
@media screen and (max-width: 1200px) {
    .project-container{
        display: flex;
        width: 79%;
        flex-wrap: wrap;
    }
    .project-item {
        h4{
            width: 100%;
            white-space: nowrap;
            font-size: 1.9em;
        }  
    }
}
@media screen and (max-width: 990px) {
    .project-container{
        display: flex;
        width: 70%;
        flex-wrap: wrap;
        /* flex-direction: column; */
    }
    .project-content{
        gap: 15px;
        width: 40%;
    }
    .project-item {
        h4{
            width: 100%;
            white-space: nowrap;
            font-size: 1.8em;
        }  
    }
}
@media screen and (max-width: 791px) {
    .project-container{
        display: flex;
        width: 70%;
        flex-direction: column;
    }
    .project-content{
        gap: 30px;
        width: 70%;
        padding: 5px 10px;
        margin: 10px auto;
        border-radius: 10px;
        box-shadow: 1px 2px 5px antiquewhite;
    }
    .project-item {
        h4{
            width: 100%;
            white-space: nowrap;
            font-size: 1.8em;
        }  
    }
}
@media screen and (max-width: 482px) {
    .project-container{
        display: flex;
        width: 90%;
        flex-direction: column;
    }
    .project-content{
        gap: 30px;
        width: 70%;
        padding: 5px 10px;
        margin: 10px auto;
        border-radius: 10px;
        box-shadow: 1px 2px 5px antiquewhite;
    }
    .project-item {
        h4{
            width: 100%;
            white-space: nowrap;
            font-size: 1.8em;
        }  
    }
}

@media screen and (max-width: 375px) {
    .project-container{
        display: flex;
        width: 95%;
        flex-direction: column;
    }
    .project-content{
        gap: 15px;
        width: 70%;
        padding: 5px 10px;
        margin: 10px auto;
        border-radius: 10px;
        box-shadow: 1px 2px 5px antiquewhite;
    }
    .project-item {
        h4{
            width: 100%;
            white-space: nowrap;
            font-size: 1.75em;
        }  
    }
}