/*
 Theme Name:   Twenty Sixteen Child Theme
 Description:  A child theme of the Twenty Sixteen default WordPress theme
 Author:       Paul Romer
 Template:     twentysixteen
 Version:      1.0.0
*/

/*
To reduce whitespace, apply for all size screens
the settings for padding and margin that are specified in 11.1 for header.
Note, have do this explicitly because otherwise the specifications for
wider screens in style.css will take precedence. There is no way in a
child them to "delete" the special settings that apply for wider screens;
all the child can do is overwrite them.

Note also that in testing changes to the child theme, caching on
both the server side and in the browser can cause confusion.
*/

/* 710 px*/
@media screen and (min-width: 44.375em) {
  .site-header {
  	padding: 2.625em 7.6923%;
  }
  .site-branding {
  	margin: 0.875em auto 0.875em 0;
  }
}

/* 910 px*/
@media screen and (min-width: 56.875em) {
  .site-header {
  padding: 2.625em 7.6923%;
  padding-right: 4.5455%;
  padding-left: 4.5455%;
}


  .site-branding {
  	margin: 0.875em auto 0.875em 0;
  }
}

/* 985 px*/
@media screen and (min-width: 61.5625em) {
  .site-header {
  	padding: 2.625em 7.6923%;
    padding-right: 4.5455%;
    padding-left: 4.5455%;
  }
  .site-branding {
  	margin: 0.875em auto 0.875em 0;
  }
}
