.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 6rem;
}

.main__title{
    font-size: 3rem;
}

.main__text{
    font-size: 1.5rem;
    width: 50%;
    font-family: ronnia-condensed, sans-serif;
}

.skills__lists{
    display: flex;
    align-items: start;
    justify-content: center;
    width: 100%;
}

.skill__list{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.list__title{
    font-size: 3rem;
}

.list__item{
    font-size: 2rem;
    list-style: none;
    font-family: ronnia-condensed, sans-serif;
}

.skills__list {
    width: 100%;
    background: #232323;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 2.5%;
    gap: 6rem;
}

.skills__item {
    flex-basis: calc(12.5% - 6rem);
    max-width: calc(12.5% - 6rem);
    aspect-ratio: 1/1;
    background: #232323;
    border: solid white 2px;
    font-size: 6rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: rgb(100, 100, 100);
    position: relative;
}

.skills__icon{
    font-size: 4vw;
}

.skill__procent{
    font-size: 2rem;
    position: absolute;
    bottom: 0;
}

@media screen and (max-width: 1400px) {
    .skills__item {
        flex-basis: calc(25% - 6rem);
        max-width: calc(25% - 6rem);
    }

    .skills__icon{
        font-size: 10vw;
    }
}

@media screen and (max-width: 800px) {
    .skills__icon{
        font-size: 8vw;
    }

    .main__text{
        width: 90%;
    }
}

@media screen and (max-width: 700px) {
    .skills__item {
        flex-basis: calc(50% - 6rem);
        max-width: calc(50% - 6rem);
    }

    .skills__icon{
        font-size: 16vw;
    }

    .skill__procent{
        font-size: 4rem;
    }
}

@media screen and (max-width: 450px) {
    .skills__icon{
        font-size: 12vw;
    }

    .skill__procent{
        font-size: 3rem;
    }

    .skill__list{
        width: 100%;
    }
}