* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    background: linear-gradient(to left, #ea7c54, #f7d2c4);
}

/* -------------------------------- */

section.skill_bar {
    max-width: 500px;
    width: 100%;
    height: 300px;
    background-color: #f2f0f0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

/* -------------------------------- */

div.skill_container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1rem 1rem 3rem 1rem;
}

/* -------------------------------- */

div.skill_container span {
    font-size: 13px;
    font-weight: 700;
    color: rgba(0, 0, 0, .6);
}

div.line_skill {
    width: 100%;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.158);
    border-radius: 10px;

}

/* -------------------------------- */

div.html_skill .line_progress {
    width: 90%;
    height: 100%;
    position: relative;
    border-radius: 10px;
    margin-top: .5rem;
    background-color: rgba(0, 0, 255, 0.566);
}
div.css_skill .line_progress {
    width: 70%;
    height: 100%;
    position: relative;
    border-radius: 10px;
    margin-top: .5rem;
    background-color: rgba(0, 0, 255, 0.566);
}
div.javascript_skill .line_progress {
    width: 50%;
    height: 100%;
    position: relative;
    border-radius: 10px;
    margin-top: .5rem;
    background-color: rgba(0, 0, 255, 0.566);
}
div.nodejs_skill .line_progress {
    width: 30%;
    height: 100%;
    position: relative;
    border-radius: 10px;
    margin-top: .5rem;
    background-color: rgba(0, 0, 255, 0.566);
}

/* -------------------------------- */

div.line_progress{
    opacity: 0;
    animation: fade_in 1s ease-in-out forwards;
}

/* -------------------------------- */

div.html_skill .count_box {
    position: absolute;
    right: -12px;
    bottom: 15px;
    font-size:xx-small;
    width: 30px;
    height: 17px;
    background-color: rgb(80, 80, 206);
    padding: 1px 4px;
    border-radius: 3px;
    z-index: 1;
    color: #fff;
}
div.css_skill .count_box {
    position: absolute;
    right: -12px;
    bottom: 15px;
    font-size:xx-small;
    width: 30px;
    height: 17px;
    background-color: rgb(80, 80, 206);
    padding: 1px 4px;
    border-radius: 3px;
    z-index: 1;
    color: #fff;
}
div.javascript_skill .count_box {
    position: absolute;
    right: -12px;
    bottom: 15px;
    font-size:xx-small;
    width: 30px;
    height: 17px;
    background-color: rgb(80, 80, 206);
    padding: 1px 4px;
    border-radius: 3px;
    z-index: 1;
    color: #fff;
}

div.nodejs_skill .count_box {
    position: absolute;
    right: -12px;
    bottom: 15px;
    font-size:xx-small;
    width: 30px;
    height: 17px;
    background-color: rgb(80, 80, 206);
    padding: 1px 4px;
    border-radius: 3px;
    z-index: 1;
    color: #fff;
}

/* -------------------------------- */

div.count_box::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    display: inline;
    background-color: rgb(80, 80, 206);
    right: 0px;
    transform: translateX(-50%) rotate(45deg);
    top: 5px;
    z-index: -1;
    
}