.skill{
    width: 100%;
    height: auto;
    padding: 5rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.development{
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 80%;
    padding-bottom: 4rem;
}

.skill-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    justify-content: center;
}

.skill-left{
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-head{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 0;
}

.skill-grid img{
    width: 7rem;
    height: 7rem;
}

.skill h2{
    font-size: .9rem;
}

.skill-grid p{
    font-size: 1.3rem;
    line-height: 2rem;
    text-align: left;
}

@media (max-width: 768px) {

    .skill{
    width: 100%;
    height: auto;
    padding: 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
    
.skill-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.development{
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    padding-bottom: 4rem;
}

.skill{
    width: 100%;
    height: auto;
    padding: 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.skill-grid p{
    font-size: 1.3rem;
    line-height: 2rem;
    text-align: center;
}
}