.conteudo-skills {
    padding: 40px 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

h2 {
    font-size: 2.3rem;
    color: #77007F;
    margin-bottom: 50px;
}

#boxes_skills {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    text-align: center;
}

.box-skill {
    width: 40%;
    height: 320px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #77007F;
    border-radius: 0px 50px 25px;
    box-shadow: 15px 15px; 
    color: #77007F;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box-skill img {
    width: 40%;
    text-align: center;
    margin: 0 auto;
}

.box-skill h3 {
    font-size: 1.899rem;
    margin-top: 10px;
    font-weight: bold;
    
}

.box-skill p {
    width: 70%;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 1.2rem;

    display: flex;
    align-items: center;
    text-align: justify;
}


@media screen and (max-width: 1100px) {
    #boxes_skills {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 550px) {
    .box-skill {
        width: 90%;

    }
}