/*
* Query media to not display mobile-only divs if >= 600px wide
*/
.mobile {
    @media (min-width: 600px) {
        display: none;
    }
}

/*
* Formatting text
*/
h1.bold {
    font-weight: bold;
    color: red;
}
