:root{
	/* color palette. use var(--color) */
	--bg-color: #FFF4E1;
	--accent-color: #3c9e62; 
	--text-color: #000D0C; 
}

html, body {
	margin: 0;
	padding: 0;
	
	background-color: var(--bg-color);
	background-size: cover;
	
	color: var(--text-color);
	font-family: Helvetica;
	font-size: 20px;
	line-height: 1.3;
}


/* ----------LINKS------------------------------------------------------- */

a:link {
  color: var(--text-color);
  background-color: transparent;
  text-decoration: underline;
}

a:visited {
  color:  var(--accent-color);
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: var(--accent-color);
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}
/* ------------------------------------------------------------------ */


/* ------------TEXT------------------------------------------------------ */

p	{
	text-align: center;
	padding: 20px 20px;
	font-size: 25px;
}

h1 {
	text-align: center;
	padding: 20px 20px;
	color: var(--accent-color);
	font-size: 35px;
}

.funnytext{
	color: white;
	font-family:Alligator Soap;
	padding: 0px 50px 0px 0px;
  /* stylesheet included in html */
}

/* ------------------------------------------------------------------ */


/* ------------MISC?----------------------------------------------------- */

div.gallery img {
	width: 100%;
	height: auto;
}

.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
} 

/* ------------------------------------------------------------------ */


/* ----- Gallery responsive image layout ----------------------------------- */

.responsive {
  padding: 10px;
  float: left;
  width: 33.33333%;
}

@media only screen and (max-width: 1200px) {
  .responsive {
    width: 49.99999%;
  }
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* The expanding image container */
#expandcontainer {
  position: relative;
  display: none;
}

/* ------------------------------------------------------------------ */


/* ---------------------Modal for viewing imgs------------------------------ */

.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 25%;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);;
}

/* Modal Content */
.modal-content {
  position: center;

  background-color: var(--bg-color);
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 1000px;
  
  box-shadow: 0 10px 10px 0 rgba(0,0,0,0.9), 0 10px 10px 0 rgba(0,0,0,0.9);
}

/* The Close Button */
.close {
  text-align: right;
  color: white;
  position: absolute;
  width: 90%;
  top: 5px;
  right: 25px;
  font-size: 110px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

.demo {
	width: 100%;
}


img {
  margin-bottom: -4px;
}

.caption-container {
  text-align: left;
  background-color: var(--bg-color);
  padding: 20px 16px;
  color: var(--text-color);
}


.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* ------------------------------------------------------------------ */



/* ------Header options------------------------------------------------- */

#header {
	position: relative;
	margin-bottom: 0px;
	padding: 15px 50px;
	width: 100%;

	background-color: var(--accent-color);
	font-size: 40px;
	
	float: left;
}

#header h {
	line-height: 80px;
	padding: 20px 20px;
	margin: 10px 10px;
	white-space: nowrap;
}

#header .button {
	background-color: var(--accent-color);
	border: none;
	
	color: white;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	
	display: inline-block;
	margin: 10px 10px;
	cursor: pointer;
	
	box-shadow: 0 3px 8px 0 rgba(0,0,0,0.5), 0 5px 12px 0 rgba(0,0,0,0.2);
}

#header .button:hover {
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.7), 0 17px 50px 0 rgba(0,0,0,0.19);
	color: var(--bg-color);
}
/* ------------------------------------------------------------------ */


/* -----Content blocks------------------------------------------------------------- */

#wrapper {
	float: left;
	width: 100%;
	margin: 1% 1% 1% 0%;
}

#middlecontent {
	margin: auto;
	padding: 140px 0px;
}

/* ------------------------------------------------------------------ */


