@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
}

* {
 box-sizing: border-box;
}

body {
 background-image: url("img/Big-Fall-River.jpg");
 background-color: darkolivegreen;
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover; 
}

/* GRID STYLES */

img {
	max-width: 100%;
}

.row {
	max-width: 800px;
}

  .col-1 {display: none;}
  .col-2 {width: 50%;}
  .col-3 {width: 50%;}
  .col-4 {width: 100%;}
  .col-5 {width: 100%;}
  .col-6 {width: 100%;}
  .col-7 {width: 100%;}
  .col-8 {width: 100%;}
  .col-9 {width: 100%;}
  .col-10 {width: 100%;}
  .col-11 {width: 100%;}
  .col-12 {width: 100%;}

@media only screen and (min-width: 800px) {
  /* For desktop: */
  .col-1 {width: 8.33%; display: block;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}

[class*="col-"] {
  float: left;
  padding: 15px;
  margin-bottom: 5px;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}




/* FONTS */

strong {
/*	color: black; */
	font-weight: 700;
}

h1 {
	font-family: proxima-nova, sans-serif;
font-weight: 800;
font-style: normal;
	font-size: 48px;
	text-transform: uppercase;
	line-height: 1em;
	padding-bottom: 35px;
	letter-spacing: 0.02em;
	color: white;
	text-shadow: 1px 1px 8px #203012;
}

/* RESPONSIVE SIZING

@media screen and (min-width: 668px) and (max-width: 1250px) {
    h1 {
	font-size: 54px;
	word-spacing: normal;
}
}

@media screen and (min-width: 1250px) {
    h1 {
	font-size: 72px;
	word-spacing: normal;
}
}  */

p {
	font-family: adobe-garamond-pro, serif;
font-weight: 400;
font-style: italic;
	font-size: 24px;
	line-height: 1.2em;
	padding-bottom: 5px;
	letter-spacing: 0.035em;
	font-weight: 400;
	color: white;
	text-shadow: 1px 1px 8px #203012;
}

/* BUTTONS */

button {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  margin-top: 15px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  font-family: proxima-nova, sans-serif;
font-weight: 400;
font-style: normal;
}

.smallbutton {
  color: white;
  background-color: rgba(50, 77, 28, 0.75);
  font-size: 16px;
  padding: 10px 20px;
	margin-top: 20px;
	margin-bottom: 30px;
}

.bigbutton {
  font-weight: 700;
  color: white;
  background-color: rgba(50, 77, 28, 0.55);
  font-size: 16px;
  padding: 10px 30px;
  width: 800px;
  max-width: 90%;
  margin: 0 auto 30px auto;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

@media screen and (min-width: 900px) { 
	.bigbutton {
		font-size: 24px !important;
	}
}


button:hover {
  opacity: 0.5;
}




/* COMPONENT STYLES

NOTES: 
	- Header contains navigation; 

*/

div.content {
	background-color: rgba(82, 79, 38, 0.25);
	max-width: 1100px;
	margin: 0 auto;
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 20px;
	padding-bottom: 20px;
}

@media screen and (min-width: 900px) {
    div.content {
	padding-left: 28px;
	padding-right: 28px;
	padding-top: 25px;
	padding-bottom: 30px;
	margin: 80px auto;
	} }