/* contains all general CSS code */

body { /* these styles below will be inherited */
    font-family: Roboto, Arial; 
 
    margin: 0;
    padding-top: 80px; /* so header doesn't block the content at top of page */
    padding-left: 96px;  /*space to the left so sidebar doesn't cover */
    padding-right: 24px;
    background-color: rgb(248,248,248);

}

@media (min-width: 1200.1px) {
    body {
        margin-left: 168px; /* space on the outside to the left of body so that main content is not covered */
    }
}

p {
    margin-top: 0;
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: black;
}


