@media screen and (max-width: 600px){


    #bottom-nav{
        display: flex;
    }

    #nav-title{
        display: block;
        opacity: 1;
    }

    #nav-menu {
        display: none;
    }


    .nav-item{
        padding: 0;
        margin: 0.5rem 0;
    }
}

@media screen and (max-width: 600px) {

    #top {
        display: flex;
        background: rgba(0, 0, 0, 0.6);
        background-size: cover;
        height: 35vh;
    }
    /* url("https://source.unsplash.com/1024x500/?smartphone,apps")  */
    #top::before{
        content: "";
        background: url("https://images.unsplash.com/photo-1514575110897-1253ff7b2ccb?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80") no-repeat center;
        background-size: cover;
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 45vh;
        z-index: -1;
    }

    #top div{
        width: 100vw;
        margin: 0;
        justify-content: center;
        align-items: center;
    }

    #top div p{
        margin: 0;    
        padding: 0 20px;    
    }

    #apps h3{
        padding: 16px;
    }
    
    #horizontal{
        align-items: center;
        justify-content: center;
    }

    #about-container{
        flex-direction: column-reverse;
    }
}