#programming_languages {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
}
.programming_languages__skill {
    width: 600px;
    background-color: rgb(185, 185, 185);
    margin: 0 0 6px 0;
    padding: 8px 5px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.programming_languages__skill_img {
    height: 40px;
    background: none;
    margin: 0 20px 0 10px;
}
.programming_languages__skill_text {
    font-size: 30px;
    color: white;    
    background: none;
}

.programming_languages__skill_used_on {
    width: 100%;
    display: flex;
    justify-content: right;
    background: none;
}
.programming_languages__skill_used_on_element {
    position: relative;
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center; /*Important for Tooltips*/
    cursor: pointer;
    border-radius: 10px;
}
.programming_languages__skill_used_on_element:hover { 
    background-color: rgb(173, 173, 173);
}
.programming_languages__skill_used_on_element_media {
    width: 50px;
    background: none;
}
.programming_languages__skill_used_on_element_tooltip {
    width: fit-content;
    position: absolute;
    top: 50px;
    white-space: nowrap;
    color: white;
    font-size: 20px;
    background-color: rgb(159, 159, 159);
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 1;
}