

.skills {
    min-height: 50vh;
    background-color: #000;
    padding: 0px 0px 100px;
}

.skills h2{
    color: #fff;
    text-align: center;
}

.skills span{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skills div{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    color: #fff;
}

.skills div label{
    padding: 12px 24px;
    border: solid 1px #fff;
    font-weight: bold;
    border-radius: 8px;
}

.skills #skills_title,
.skills #skills_text {
    opacity: 0;
}


@media screen and (max-width: 1023px) {
    .skills span, .skills div{
        gap: 4px;
    }

    .skills div label{
        padding: 4px 12px;
    }
}