.skills {
    color: var(--cor-fonte-padrao);
    font-size: .875rem;
}

.skills__title {
    font-size: 1.375rem;
    text-align: center; 
    margin-bottom: 1rem;
    font-weight: 700;
}

.skills__line {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.skills__box{
    display: block;  
    width: 33.33%;
}

.skills__name {
    width: 100%;
}

.skills__box_ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    width: 100%;
    height: 50px;
}

@media screen and (min-width: 768px) {
    .skills {
        font-size: 1rem;
    }

    .skills__title{
        margin-bottom: 2rem;
    }
}