/* S1 */
.s1{
    margin-left: 50px;
    margin-top: 50px;
}

.title{
    color: white;
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 20px;
    font-style: italic;
}

.skills{
    font-size: 18px;
    
}

.skills-dot{
    margin: 0px 10px;
}



.skills-card{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.skill{
    display: flex;
    gap: 10px;
    margin-top: 10px;
    padding: 5px 25px 5px 3px;
    align-items: center;
    background-color: rgba(103, 144, 205, 0.1);
    border: 2px solid rgba(103, 144, 205, 0.1);
    border-radius: 5px;
}

.icon-skill{
    max-width: 25px;
}




/* S2 */
.last-project{
    justify-self: center;
    font-size: 30px;
    margin-top: 40px;
    color: rgb(255, 255, 255);
}

.cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.card{
    width: 300px;
    height: 350px;
    padding: 25px;
    border-radius: 50px;
    background-color: rgba(103, 144, 205, 0.1);
    border: 2px solid rgba(103, 144, 205, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.card:hover{
    transform: scale(1.05);
}

.card-title{
    font-size: 20px;
    justify-self: center;
    font-weight: 500;
    margin-bottom: 15px;
}


.card-image{
    margin-top: 30px;
    max-width: 300px;
}

/* S3 */