.skills-container {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.skill-content {
    width: 300px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.progress-bar-skill {
    width: 100%;
    height: 6px;
    background-color: var(--progress-bar-background);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.progress-bar-skill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    display: block;
    border-radius: 20px;
    background-color: var(--color-three);
}

@media (max-width: 600px) {
    .skill-content {
        width: 200px;
        height: 100px;
    }
}