/* Ben's Ultra-Simple CSS stylesheet */

body {
    background-color: #CDEBEF; /* very light blue */
    padding: 30px 75px 30px 75px; 
}


p {
    font-family: Georgia;
    font-size: 12pt;
}

h1 {
    font-family: Arial;
}

.site-id {
    background-color: #efd1cd; /* complementary color of bkgrnd */
    font-style: italic;
    font-size: 10pt;
}

hr {
    border-top: 7px solid grey;
}

/* auto-size images correctly on desktop and mobile */
img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}

/* make the screen-border padding reasonable on mobile */
@media only screen and (max-width: 600px) {
   body {
      padding-left: 0;
      padding-right: 0;
   }
}
