
.table{
    background-color: rgb(60, 60, 60);
    display: flex;
    flex-direction: wrap;
    flex-wrap: wrap;
    gap: 10px;
    padding: 50px;
    width: 50%;
    border-radius: 50px;
    justify-content: space-between;
    align-items: center;
}

.skill{
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.skill img:hover{
    transform: translateY(-10px);
}

.skills{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.skill img{
    transition-duration: 200ms;
    width: 150px;
    border-radius: 100%;
}

@media only screen and (max-width: 600px) {
    .skill img{
        width: 50px;
    }
}
.skill a{
    text-decoration: none;
    font-size: x-large; 
    font-weight: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(216, 216, 216);
}
