.skills-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.skill {
    background-color: var(--white);
    width: 300px;
    height: 300px;
    margin: auto;
    border-radius: 20px;
    box-shadow: 0 0 20px #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.5s;
    cursor: pointer;
}

.logo-skill {
    background-image: url(https://i.postimg.cc/8zXmP4Qt/habilidad.png);
    width: 100px;
    height: 100px;
    background-position: center;
    background-size: cover;
    transition: all 0.2s;
}

.skill:hover .logo-skill {
    background-image: url(https://i.postimg.cc/x11P277X/habilidad-white.png);
}

.skill:hover {
    background: var(--gradient);
}

.skill-name {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    transition: all 0.2s;
}

.skill:hover .skill-name {
    background: var(--white);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.level-experience {
    font-size: 24px;
    color: #000000;
}

@media (max-width: 420px) {
    .skill {
        background-color: var(--white);
        width: 250px;
        height: 250px;
    }

    .logo-skill {
        width: 60px;
        height: 60px;
    }
}