/*
* Heady Design Co.
* Created by Heady Designs
* http://www.headydesign.co
*/

/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Main Content
- Links
- Buttons
- Forms
- Lists
- Spacing
- Utilities
- Clearing
- Media Queries
*/

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }


/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 80%; }
}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box; }

html {
  font-size: 62.5%; } /* Setting borrowed from Skeleton */
  
body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 300;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #222;
  background: url(../images/bkg.jpg) no-repeat top center; }
	
img {
	max-width:100%;
	height:auto; }
		
	
/* Main Content
–––––––––––––––––––––––––––––––––––––––––––––––––– */


h1, h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 5rem; 
  font-family: "Montserrat", Georgia, Times New Roman, serif; }
  
h1 {   
  margin-top: 3rem;
  margin-bottom: 0;
  text-align: center;
  color: #333; }
  

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  text-decoration: none;
  color: #BDBEC0; }
  
a:hover, a:focus {
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #363636; }



/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
ul,
ol,
form {
  margin-bottom: 2.5rem; }
  
 p { 
  margin-bottom: 1rem;
  padding-bottom: 0.5rem; }
  

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }


/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/

/* Phone Size */
@media only screen {
}

/* Larger than mobile */
@media (min-width: 375px) {

	}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
	}

/* Larger than tablet */
@media (min-width: 750px) {

	}

/* Larger than desktop */
@media (min-width: 1000px) {
		
	}

/* Larger than Desktop HD */
@media (min-width: 1200px) {

}
