.container {
    display: flex;
    justify-content: center;
    gap: 40px;             
    padding: 15px;
}

.project {
    width: 250px; 
}

.project a {
    text-align: left;       
    text-decoration: none;  
    color: black;        
    display: block;   
}

.project img {
    width: 100%;
    height: 200px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: block;
}

.project a h2 {
    font-weight: bold;
    color: black;
    font-size: 25px;
    font-family: Arial, sans-serif;
    margin: 10px 0 5px 0;
}

.project a p {
    font-size: 15px;
    margin: 0 0 10px 0;
    font-family: Arial, sans-serif;
    color: black;
}

.project a:hover h2,
.project a:hover p {
    font-style: italic;
}

@media (max-width: 430px) {
    .container {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .project {
        width: 100%;
        max-width: 100%;
    }

    .project img {
        width: 100%;
        height: auto;
        display: block;
    }
}
