#skills {
    background-color: var(--firstColor);
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-margin-top: 69px;
}

#skills .container {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    color: var(--textColor);
}

.experience-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    justify-content: center;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-items: center;
}

.experience-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    background: transparent;
}

.experience-details-icon {
    height: 2.5rem;
    width: 2.5rem;
    margin-bottom: 0.5rem;
}

.experience-details h4 {
    margin: 0.3rem 0;
}

.experience-details small {
    font-size: 0.9rem;
    color: var(--textColor);
}

.star {
    color: var(--eyeCatchColor);
}

.experience-code,
.experience-tools {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-code h2,
.experience-tools h2 {
    text-align: center;
    margin-top: 60px;
}

/*------------------Mobile------------------*/
@media (max-width: 768px) {
    #skills {
        scroll-margin-top: 112px;
    }

    .experience-container {
        grid-template-columns: 1fr;
    }

    .experience-content {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .experience-content {
        gap: 0.8rem;
    }

    .experience-details h4 {
        font-size: 14px;
    }

    .experience-details small {
        font-size: 11px;
    }
}

@media (min-width: 769px) {
    #skills {
        min-height: 75vh;
    }
}
