.projects-section {
    background-color: rgb(35, 34, 34);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 3em;
}


.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background-color: #3B3059; 
    color: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    margin: 15px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-title {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: bold;
}

.project-description {
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 15px;
    flex-grow: 1;
}

.project-skills {
    font-size: 0.8em;
    color: #D0B8E8; 
}

.project-icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
}

.project-icon {
    margin-right: 10px;
    font-size: 1.2em;
    color: #D0B8E8; 
    text-decoration: none;
}

.project-icon:hover {
    color: #FFFFFF;
}