.project{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.project .project-title{
    color: var(--text-white);
    font-size: calc(2rem + 1vw);
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 10px;
    text-align: center;
}
.project .projects-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.project .card{
    color: var(--text-white);
    width: 300px;
    border: 2px solid var(--text-white);
    background-color: var(--bg-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}   
.project .card:hover{
    transform: translateY(-10px);
}

.project .card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}