.skills{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.skills .tools ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    width: 300px;
}

.skills .tools h3{
    text-align: center;
    margin-bottom: 2rem;
}

.skills .tools li{
    margin: 1rem 1rem;
}

.skills .tools li img{
    width: 2.5rem;
}

.skills .personal ul{
    width: 300px;
}

.skills .personal li{
    margin: 1rem;
    text-align: center;
    list-style: none;
}

.skills .personal h3{
    text-align: center;
    margin-bottom: 3rem;
}

@media only screen and (max-width: 680px) {
    .skills{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .skills .tools{
        margin-top: 2rem;
    }

    .skills .personal{
        margin-top: 2rem;
    }

    .skills .personal h3{
            margin-bottom: 2rem;
    }

}