@media screen and (max-width: 576px) {
    /* SMALL SCREEN */
    .navbar-link{
        display:none;
    }
    #mobile-menu{
        display: block;
    }
    .half-half{
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }
    .half-half .about{
        flex-basis: 100%;
        margin-top: -5vh;
    }
    .half-half .picture{
        flex-basis: 100%;
        max-width: 90vw;
        max-height: 65vh;
    }
    .half-half .about #greetings{
        font-size: 200%;
    }
    .experience{
        flex-direction: column;
        max-width: 85vw;
    }
    .experience-logo-and-links img{
        width: 350px;
    }
    .experience-description{
        padding: 2vh 0;
    }
    .project{
        padding: 2vh 2.5vw;
    }
    #cursor-follower{
        display: none;
    }
    #my-thoughts{
        display: none;
    }
    .vc-introduction{
        width: 100%;
        padding: 0;
    }
    .vc-introduction-container img{
        width: 100%;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .vc-introduction-container .code-snippet{
        width: 100%;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .vc-introduction-container .vel-calc-slideshow{
        width: 100%;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .vc-introduction-container{
        flex-direction: column-reverse;
        align-items: center;
    }
    .rag-introduction-container{
        width: 100%;
        padding: 0;
    }
    .rag-main-container{
        flex-direction: column-reverse;
        align-items: center;
    }
    .rag-generator-holder{
        width: 100%;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .skills-holder img{
        width: 3em;
    }
}
@media screen and (min-width: 576px) {
    /* BIG SCREEN */
    .navbar-link{
        display: block;
    }
    #mobile-menu{
        display: none;
    }
}