body, html {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
	background-color: black;
}

figure {
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    margin-bottom: 50px;
}

body {
    background-color: black;
}

a {
	font-size: 16px;
	text-decoration-line: none;
	color: black;
}

a:hover {
	color: #ccc;
}

/* The hero image */
.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url(../images/camp_pano_trimmed.jpg);

  /* Set a specific height */
  height: 40%;

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Place text in the middle of the image */
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2em;
}

h3 {
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

/*pulled this and resp-ifram from the web...doesn't quite work as expected */
.resp-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*pulled this from the web...doesn't quite work as expected */
.resp-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border: 0;
}

/* now using this to center iframes */
.center-iframe {
    display: block;
    width: 80%; /* It should not be 100% */ 
    height: 80%;
    margin-left: auto;   /* Automatic margin from left */ 
    margin-right: auto; /* Automatic margin from right */ 
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  font-weight: bold;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active_collapsible, .collapsible:hover {
  background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1 !important;
  font-family: Arial, Helvetica, sans-serif;
  color: #444;
}

.collapsible:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: white;
  float: right;
  margin-left: 5px;
}

.active_collapsible:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/* styling for tabs */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  /*background-color: #f1f1f1; */
  background-color: #black;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: #282828;
  float: left;
  border: none;
  outline: none;
  /*cursor: pointer;*/
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 15px;
  font-weight: bold;
  color: white;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;  
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #4f4f4f;
  color: white;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  background-color: black;
}

/**************Recipe Cards********************/
.rcard {
	margin-left: 30px;
	max-width: 500px;	
	margin-top: 5px;
	margin-bottom: 5px;
	border-radius: 5px;
}

.rcard-header {
	background-color:#282828;
	text-align: center;
	padding-top: 2px;
	padding-bottom: 2px;
	margin-top: 5px;
	color: white;
	border-radius: 5px;
}

.rcard-method {
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .hero-text {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 2em;
  }
  
	/**************Recipe Cards********************/
	.rcard {
		margin-left: 5%;
		margin-right: 5%;
		max-width: 90%;	
		margin-top: 5px;
	}	

}