/* Skills-section */
#skills{
    position: relative;
    margin: 15px 0 5px 0;
    text-align: center;
    color: #fff;
}
#skills::before{
    content: "";
    background: url(/images/bg-image.jpg) no-repeat center center/cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    
}
.skill-heading{
    font-size: 35px;
    padding: 35px 0px;
    position: relative;
}
.skills-list{
    display: flex;
    justify-content: space-between;
    position: relative;
}
#skills ul{
    padding: 1rem 25rem 2rem 25rem;
}
#skills ul li{
     font-size: 20px;
     transition: all 1.5s ease-in-out;
}
#skills ul li:hover{
    color: #1a9494;
    cursor: pointer;
    transform: rotate(180);
    transform: skew(25);
    transform: scale(1.5);
}

/* Projects-section */
#project{
    margin: 30px 0;
}
.project{
    padding-top: 50px;
}
.project-heading{
    text-align: center;
    text-transform: uppercase;
    font-size: 35px;
    padding: 20px 0;
}
.row{
    display: flex;
    column-gap: 200px;
    justify-content: center; 
}
.row img{
    height: 170px;
    padding-top: 10px;
    padding-bottom: 20px;
}
.row1{
    padding-top: 50px;
}
.row2{
    padding-top: 30px;
}
.column{
    transition: all 1.5s ease-in-out;
}
.column:hover{
    transform: rotate(180);
  transform: skew(25);
  transform: scale(1.2);
}

@media(max-width: 500px){
    /* skills-section */
    #skills{
        margin: 20px 0;
    }
    .skill-heading{
        padding: 5px 0px;
        font-size: 45px;
    }
    .skills-list{
        flex-direction: column; 
    }
    #skills ul{
        padding: 2rem 2rem;
    }
    #skills ul li{
        font-weight: bold;
        font-size: 25px;
        padding-bottom: 15px;
    }

    /* Projects */
    #project{
        margin-bottom: 0;
    }
    .row{
        flex-direction: column;
        column-gap: 0;
        align-items: center;
    }
    .row img{
        height: 200px;
        padding-top: 10px;
        padding-bottom: 50px;
    }
    .column h4{
        text-align: center;
        font-size: 22px;
    }
}