@import "colorScheme.css";

#skills{
    width: 100%;
    height: 100vh;
    background-color: var(--skills-bg);
}

.skills-title{
    width: 100%;
    height: 10vh;
    text-align: center;
    color: var(--title-text-color);
    line-height: 10vh;
}

.skills-content{
    display: flex;
    flex-basis: 100%;
    height: 90vh;
    justify-content: center;
    padding: 5vh 1vw;
}

.skills-content-box{
    display: flex;
    width: 90%;
    height: 90%;
    background: var(--primary-color);
    flex-wrap: wrap;
    padding: 2vh;
    border-radius: 10px;
    gap: 2vw;
    justify-content: space-evenly;
}

.skills-content-box > div{
    flex-wrap: wrap;
    flex-basis: 15%;
    width: 15%;
    height: 20%;
    background: var(--primary-color);
    border-radius: 10px;

    box-shadow: -5px -5px 10px #014920,
                5px 5px 10px #00414d,
                inset -2px -2px 2px #00724c,
                inset 2px 2px 2px #11131b;
}

.programming-language{
    padding: 5px;
}

.programming-language img{
    display: block;
    margin-left: auto;
    margin-right: auto;

    width: 50%;
    height: 70%;
    padding: 2px;
}

.programming-language p{
    height: 30%;
    font-size: 1rem;
    margin-top: 5px;
    text-align: center;
}

.programming-language:hover  {
    background: #4b0032;
    cursor: pointer;
}
