progress {
    -webkit-appearance: none;
    appearance: none;
    width: 200px;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

progress::-webkit-progress-bar {
    background: #E0E0E0;
    border-radius: 4px;
}

progress::-moz-progress-bar {
    background: #E0E0E0;
}

/*
    1 should work i think maybe.
*/

#kotlin::-webkit-progress-value { background: #7E57C2; } 
#htmls::-webkit-progress-value { background: #FF5722; } 
#csss::-webkit-progress-value { background: #03A9F4; } 
#js::-webkit-progress-value { background: #FFEB3B; } 

#kotlin::-moz-progress-bar { background: #7E57C2; } 
#htmls::-moz-progress-bar { background: #FF5722; } 
#csss::-moz-progress-bar { background: #03A9F4; } 
#js::-moz-progress-bar { background: #FFEB3B; } 

.skill {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
}

.skill label {
    width: 100px;
}

.Skills {
    background-color: rgba(92, 92, 92, 0.659);
    position: relative;
    padding: 20px;
    height: 200px;
    margin: 20px;
    border: 4px solid hsl(240, 5%, 18%);
    border-radius: 20px;
    color: rgb(255, 255, 255);
}

.Skills h2 {
    text-align: center;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .Skills {
        margin: 20px auto;
        width: 250px auto; 
    }
}