.center-text{
    text-align: center;

}

.center-text h2{
    font-size: var(--h2-font);
}
.skills-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    align-items: center;
    gap: 2.3rem;
    margin-top: 4.2rem;
}

.box{
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 80px 40px 66px;
    background: #2d343f;
    border-radius: 28px;
    border: 1px solid transparent;
    box-shadow: 0 0 5px var(--main-color);
    transition: all .5s ease;
    cursor: pointer;
}

.box img{
    margin-bottom: 20px;
    width: 90px;
    

}

.box h3{
    font-size: clamp(16px, 5vw, 32px);
    font-weight: 700;
    margin-bottom: 10px;
}

.box p {
    font-size: var(--p-font);
    font-weight: 400;
    color: var(--other-color);
    line-height: 30px;
    margin-bottom: 20px;
}

.box:hover {
    border: 1px solid var(--main-color);
    transform: translateY(-5px)scale(1.03);
}