* { outline: none;}

body {
    background-color: black;
    margin: 0px;
}

a {
    text-decoration: none;
}

nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border: none;
    border-bottom: gray solid;
}

.appThumbs {
    border-radius: 10px;;
}

.homeBtn, select {
    border-radius: 10px;

}





/* MEDIA QUERY ************************************************************ */

@media only screen and (max-width: 600px) {

    body {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    nav {
        flex-direction: column;
        padding: 10px;
        height: 150px;
        width: 100%;
    }



}