.skills{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: relative;
    font-family: "Source Sans 3", sans-serif;
}

.skills-overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.skills-code-blur{
    bottom: -50px;
    left: 0;
    position: absolute;
    z-index: -2;
}

.bouncing-cube-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    filter: brightness(0.4);
    position: absolute;
    z-index: -1;
    top: 80%;
    left: 10%;
}

.bouncing-cube-container .cube {
    position: relative;
    width: 100px;
    transform-style: preserve-3d;
    transform: rotateX(-30deg) rotateY(-45deg);
    z-index: 10 !important;
    margin-top: -100px;
}

.bouncing-cube-container .base {
    position: relative;
    width: 200px;
    transform-style: preserve-3d;
    transform: rotateX(-30deg) rotateY(-45deg) scaleY(0.25);
    margin-bottom: -100px !important;
}

.bouncing-cube-container .cube::before{
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    transform: rotateX(-90deg) translateZ(50px);
    background: #0008;
    filter: blur(20px);
    animation: bounce-shadow 5s ease-out infinite;
    margin-top: -100px;
}

.bouncing-cube-container .cube div {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #ffc400;
    animation: bounce 5s ease-out infinite;
}

.bouncing-cube-container .base div {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #ffc400;
}

.bouncing-cube-container .front  { transform: translateZ(50px); background: #d3a200 !important; }
.bouncing-cube-container .right  { transform: rotateY(90deg) translateZ(50px); background: #deaa00 !important ;}
.bouncing-cube-container .top    { transform: rotateX(90deg) translateZ(50px); }

.bouncing-cube-container .base-front  { transform: translateZ(100px); background: #d3a200 !important; }
.bouncing-cube-container .base-right  { transform: rotateY(90deg) translateZ(100px); background: #deaa00 !important ;}
.bouncing-cube-container .base-top    { transform: rotateX(90deg) translateZ(100px); }

.skills-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    max-width: 1366px;
    padding: 0 150px;
    color: #fff;
}

.skills .tag p{
    font-size: 24px;
    font-weight: 100;
    word-spacing: 3px;
    text-align: center;
    color: #ccc;
    text-transform: uppercase;
}

.skills-p p{
    font-size: 18px;
    padding-bottom: 15px;
    line-height: 28px;
    text-align: center;
}

.skills-p p a{
    text-decoration: none;
    color: #ffc400;
}

.skills-p p a:hover{
    text-decoration: underline;
}.skills .langs{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 50px;
    row-gap: 30px;
}

.skills .langs .item{
    font-size: 64px;
    padding: 0 20px;
    /* height: 100px;
    aspect-ratio: 1; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    list-style-type: none;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 1;
}

.skills .langs .item p{
    font-size: 18px;
}

.skills .langs .item i{
    font-size: 84px;
    padding: 0 20px;
    position: relative;
}