h1{
    text-align: center;
    font-size: 1.4rem;
}

.project-list{
    display: flex;
    flex-direction: row;
    height: auto;
    width: 90%;
    justify-content: center;
    margin: auto;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 3rem;
    
}
.project-list .project-item{
    display: block;
    width: 30%;
    min-width: 325px;
    border-radius: 25px;
    box-shadow: var(--secondary)0 5px;
    border: 1px solid gray;
    text-decoration: none;
    color: black;

}
.project-list .project-item img{
    width: 100%;
    height: 90%;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
    box-shadow: black 0 2px 5px;
}
.project-list .project-item h3{
    text-align: center;
}

.project-detail{
    width: 80%;
    margin: auto;
    padding: 2rem;
}
.project-detail-img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    box-shadow: black 0 2px 5px;
    margin-bottom: 1rem;
}