#experience {
    padding: 50px 20px;
    /* background-color: white; */
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    justify-items: center;
    /* max-width: 900px; */
    margin: auto;
}

.skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

.skill img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.skill span {
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.skill:hover {
    transform: scale(1.1);
}