/*main skill*/
.contain-skill{
    display: flex;
    flex-direction: column;
}
.skill-container{
    display: flex;
    background-color: #16241b;
    justify-content: space-evenly;
    padding: 30PX;
}
.skill__title{
    display: flex;
    color:  #f7f8f7;
    margin-top: 2rem;
    justify-content: center;
    font-size: 1.6rem;
    text-shadow: black 0.1em 0.1em 0.1em;
    font-family: 'Source Code Pro', monospace;
    letter-spacing: 0.12em;
}
.icon__box{
    display: flex;
    justify-content: center;
    width: 85px;
    height: 85px;
    background: rgb(243, 236, 236);
    flex-wrap: wrap;
    padding: 2px;
    font-size: small;
    font-weight: 800;
    border-radius: 3PX;
}
.icon__box:hover{
    transition: 1s;
    transform: scale(1.3);
}
.img__skill{
    width: 54px;
    height: 54px;
}

/*Responsive*/
@media (max-width: 800px){
    .skill__title{
        font-size: small;
        margin-bottom: 1%;
    }
    .skill-container{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .icon__box{
        margin: 5%;
    }
}