#slide{
	width:100%;
	}
	
* {
	box-sizing: border-box;
  margin:0;
  padding: 0;
}
a{
	text-decoration: none;
	color: inherit;
}
.mySlides {
	display: none
}

.slideshow-container {
	width:100%;
	position: relative;
}
/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -40px;
	font-weight: bold;
	font-size: 30px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
}
/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
	background-color: gold;
}
/* Caption text */
.text {
	color: #f2f2f2;
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}

/* The dots/bullets/indicators */
.dot {
	cursor: pointer;
	height: 13px;
	width: 13px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}
.active, .dot:hover {
	background-color: #717171;
}
/* Fading animation */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 4s;
	animation-name: fade;
	animation-duration: 4s;
}
@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}
/*image gallery*/

@import url(https://fonts.googleapis.com/css?family=Open+Sans);

* { box-sizing: border-box; }

body { 
  font-family: cursive;
}

/*image gallery*/
.row img{
  margin: 10px;
}

.col-md-4{
  display:none;
}

.content{
  background-color:#333;
  height:200px;
  margin:10px 0;
  border:1px solid #ccc;
}

.load-more{
  background-color:gold;
  color:#740000 ;
  font-weight: bold;
  padding:10px;
  border-radius:4px;
  font-size:25px;
  margin:50px 0;
  display:inline-block;
}

.load-more:hover{
  background-color:#cf04f2;
  color: white;
  text-decoration:none;
}

.footer{
  background-color: #740000;
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
}

/*button over image*/
.btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	background-color: #cf04f2;
	color: white;
	font-weight: bold;
	font-size: 18px;
	padding: 16px 32px;
	display: none;
  }

.col-md-4:hover img{
	opacity:0.6;
}

.col-md-4:hover .btn{
	display: block;
}

.col-md-4 img{
	height: 300px;
}

.thumbnail{
	color: gold;
	font-size: 20px;
}
