#skills{
        position: fixed;
        top: 0;
        right: 20px;
        width: 60%;
        min-width: 300px;
        height: 100%;
        perspective: 400px;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: -1;
    transition: all 300ms;
}

.skills-description {
    color: #bbb;
    padding: 20px;
    margin-left: 10px;
    line-height: 1.5;
    font-family: AmaticSC, serif;
    transition: all 300ms;
}

@media only screen and (max-width: 768px) {
    #skills {
        height: 50% !important;
        top: 50% !important;
        left: 0 !important;
        width: 100% !important;
    }

    .skills-description {
        position: relative !important;
        top: -100px !important;
    }
}
