@charset "UTF-8";

html, 
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
}

/* Phone View */

@media screen {
  
  body {
    margin-left: auto;
    margin-right: auto;
    background: #CCCCFF;
  }

  header {
    margin-top: 1em;
    padding: 1em 2em;
    background-color: #8080FF;
  }

  main {
    background-color: #CCCCFF;
    padding: 0.5em;
  }

  footer {
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 1em 2em;
    background-color: #5555FF;
    color: white;
  }

  img {
    width: 75%;
    max-width: 75%;
    height: auto;
    vertical-align: middle;
    border-style: inset;
    margin: 0em 2em 2em;
  }

  h1 {
    font-size: 48px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 1em;
    text-align: center;
    text-shadow: 2px 2px 1px white;
  }

  h2 {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 200;
    margin-bottom: 0.5em;
    text-align: center;
  }

  h3 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 200;
    margin-bottom: 120px;
  }

  h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 0.5em;
    text-align: center;
  }

  p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 25px;
  }

  .col {
    width: 100%;
  }

  .row:before, .row:after {
    content: "";
    display: table;
  }

  .row:after {
    clear: both;
  }

  .style-nav ul {
    list-style-type: none;
  }

  .style-nav ul li a {
    color: black;
    text-decoration: none;
    text-align: center;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    padding: 0.25em;
  }

  .hero {
    background-image: none;
    background-size: cover;
    padding: 1em 1em;
    color: #000000;
    text-align: center;
  }

  .button {
    border: 0.25em white solid;
    padding: 0.5em 2em;
    border-radius: 2em;
    color: white;
    text-decoration: none;
    align-content: center;
    margin: 2em 2em;
  }

  .info-box {
    background-color: #2D2D35;
    color: #FFFFFF;
    padding: 2em 1em;
    margin: 1em 1em;
    text-align: center;
  }

  .footer-text {
    font-size: 14px;
    margin: 1em 0em 0em;
  }

  .ref li {
    margin: 1.5em 1em;
    list-style-type: none;
  }
	
	.ref a {
		background: none;
		color: black;
	}

  .contact li {
    list-style-type: none;
    margin: 1em 1em;
    text-align: center;
  }
	
	.reppert {
		width: 50%;
		padding: 0.5em;
	}
  
  .musings img.resize {
    width: 540px;
    height: auto;
  }
  
} /* Phone View */


/*Tablet View*/

@media (min-width: 768px){
	
	body {
		max-width: 868px;
	}
    
  img {
    width: 80%;
    max-width: 80%;
		height: auto;
		margin: 1em;
  }
	
	h1 {
		font-size: 40px;
		margin-bottom: 1em;
	}
	
	h2 {
		margin-bottom: 0.5em;
	}
	
	.style-nav ul li {
		display: inline-block;
	}
	
	.style-nav ul {
		text-align: center;
	}
	
	.col {
		float: left;
		padding: 0.2em 0.4em;
	}
	
	.col-md-one-half {
		width: 50%;
	}
	
	.info-box {
		padding: 2em 0em;
		margin: 1em 0em;
	}
	
	.info-box p {
		margin: 0.25em 1em;
	}
	
} /* Tablet View */


/*Desktop View*/

@media (min-width: 1024px){
	
	body {
		max-width: 1200px;
	}
  
  img {
    width: 80%;
    max-width: 80%;
		height: auto;
    margin: 1em;
  }
  
  .hero img {
    width: 50%;
    max-width: 50%;
  }
	
	.style-nav {
		float: right;
	}
	
	.col-lg-one-fourth {
		width: 25%;
	}
	
	.col-lg-one-half {
		width: 50%;
	}
	
} /* Desktop View */

