/* change the unreadable default font */
body {
  font-family: 'Lato', 'Arial', sans-serif;
}
p {
    font-size: 1.1em;
}
.wp-caption-text {
    font-size: 0.9em;
}

/* Get rid of that stupid background-bleed bar on wider screen sizes */
@media screen and (min-width: 768px) {
  .post {
    background-color: white;
    margin: -64px 0 0 0;
    padding-top: 64px;
  }
}

/* undo pulling of content into margins at larger screen sizes */
@media screen and (min-width: 1060px) {
    .entry-content .jetpack-video-wrapper,
    .entry-content .gallery,
    .entry-content .tiled-gallery-wrapper {
        width: 1000px;
        margin-left: 0;
    }
    .entry-content .jetpack-video-wrapper iframe {
    	margin: 0 auto !important;
    }
    blockquote.aligncenter {
        width: 1000px;
        margin-left: 0;
    }
    .wp-caption.alignleft,
    img.alignleft,
    blockquote.alignleft {
        margin-left: 0;
    }
    blockquote.alignleft,
    blockquote.alignright {
        width: 330px;
    }

    .wp-caption.alignright,
    img.alignright,
    blockquote.alignright {
        margin-right: 0;
    }
}

/* Make comment input fields smaller so that they don't break the layout on small phone screens */
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
  width: 15em;
}

  