.skills__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    justify-items: center;
    align-items: center; 
    list-style: none;
    max-width: 1200px; 
    margin: 0 auto; 
}

.skills__item {
    padding: 1rem;
    background-color: #f5f5f5;
    border: 1px solid #37BDF8;
    border-radius: 8px;
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    min-width: 150px;
}

.skills__item:hover {
    background-color: #37BDF8;
}

.skills__item:active {
    background-color: #37BDF8;
    color: #fff;
}