@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Rancho&family=Water+Brush&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: poppins;
}
.skills_section{
    width: 100%;
    height: 100vh;
    padding: 0px 13%;
    background-color: rgba(0, 0, 0, 0.082);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.skills_head{
    width: 100%;
    margin-bottom: 100px;
    display: grid;
    place-items: center;
    text-align: center;
}
.skills_head h2{
    font-size: 30px;
    margin-bottom: -5px;
}
.skills_head h2 span{
    color: #e74d06;
}
.skills_main{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 30px;
    grid-column-gap: 50px;
}
.skills_main .skill_bar .info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:  0 10px;
}
.skill_bar .info p:nth-child(2){
    font-weight: 500;
}
.skill_bar .bar{
    width: 100%;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.144);
    border-radius: 25px;
    margin-top: 5px;
    position: relative;
}
.skill_bar .bar span{
    width: 50%;
    height: 100%;
    position: absolute;
    background-color: #e74d06;
    border-radius: 25px;
}

.skill_bar .bar .C{
    animation: C 2s forwards;
}
@keyframes C {
    0%{
        width: 0%;
    }100%{
        width: 50%;
    }
}

.skill_bar .bar .java{
    animation: java 2s forwards;
}
@keyframes java {
    0%{
        width: 0%;
    }100%{
        width: 30%;
    }
}

.skill_bar .bar .cpp{
    animation: cpp 2s forwards;
}
@keyframes cpp {
    0%{
        width: 0%;
    }100%{
        width: 0%;
    }
}

.skill_bar .bar .html{
    animation: html 2s forwards;
}
@keyframes html {
    0%{
        width: 0%;
    }100%{
        width: 10%;
    }
}

.skill_bar .bar .CSS{
    animation: CSS 2s forwards;
}
@keyframes CSS {
    0%{
        width: 0%;
    }100%{
        width: 0%;
    }
}

.skill_bar .bar .js{
    animation: js 2s forwards;
}
@keyframes js {
    0%{
        width: 0%;
    }100%{
        width: 0%;
    }
}
