.skillsSection{
    width: 100%;
    height: auto;
    background-color: #0f1623;
    display: flex;
    justify-content: center;
}
.skillContent{
    margin: 4rem 0;
    padding: 2rem;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}
.skillContent h1{
    font-size: 6rem;
    padding-bottom: 2rem;
    font-weight: 700;
    line-height: 1;
    font-family: Poppins, sans-serif;
    overflow-y: hidden;

}
.text_gradient_toOrange{
    background: linear-gradient(90deg, #fe5a5a -50.34%, #ff7170);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.text_gradient_orange{
    background: linear-gradient(90deg, #ff7170 10.66%, #ffe57f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.text_gradient_orangeToWhite{
    background: linear-gradient(90deg, #ffe57f -50.34%, #f3e3a3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.box_shadow{
    box-shadow: 0px 0px 22px 2px rgb(64 50 47);
}
.techStacks{
    padding: 2rem;
    width: 80vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}
.techStack{
    width: 8rem;
    height: 8rem;
    border: 1px solid rgba(255, 255, 255, 0.125);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 1;
    background: linear-gradient(175deg, #a7a4a4 -184%, #0f1623 71%);
}
.skillLogo {
    width: 50%;
}
.techStack p{
    opacity: 1;
}

.techStack:hover{
    box-shadow: 0px 0px 20px rgb(244, 205, 196);
    transition: 1s;
    cursor: pointer;
    scale: 1.2;

}
