@charset "utf-8";
/* CSS Document */

h3{
	padding-top: 15px;
	margin: 0;
}

a{
	display:block;
}

.blog_nav{
	display:block;
	width:14%;
	float: left;
	margin-top: 15px;
	margin-left: 15px;
	text-align: left;
	border: solid 1px #011526;
	border-radius: 5px;
	background-color:#F1F2D8;
	padding-left: 5px;
	padding-right: 3px;
	padding-bottom: 5px;
}

.blog_post{
	display: block;
	width:80%;
	float: right;
	margin-top: 15px;
	margin-right: 15px;
	border: solid 1px #011526;
	border-radius: 5px;
	background-color:#F1F2D8;
}

.blog_body{
	width:90%;
	margin-left: 5%;
	margin-right:5%;
	padding: 5px;
	border: solid 1px #011526;
	background-color:#F5F5F0;
}

.blog_data{
	text-align: right;
}

blockquote{
	margin-left: 0;
}

.coachella{
	width: 100%;
	psotion: relative;
}

.day{
		display: none;
		margin: auto;
}

.day > img{
	display: block;
	width: 80%;
	margin: auto;
}


.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 15%;
  width: auto;
  padding: 16px;
  color: #ff0000;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  user-select: none;
	border: 1px solid black;
}

/* Position the "next button" to the right */
.next {
	right:0;
	margin-right: 20%;
	text-align: center;
  	border-radius: 3px 0 0 3px;
}
.prev {
	left: 0;
	margin-left: 33.5%;
	text-align: center;
  	border-radius: 0 3px 3px 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(225, 242, 92,0.8);
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  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 {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@media (max-width: 525px){
	.blog_post{
		width: 95%;
		margin: 15px auto;
	}
	
	.blog_body{
		margin: auto;
	}
	
	.day > img{
		width: 99%;
	}
	.next{
		margin: 0;
	}
	
	.prev{
		margin: 0;
	}
	

}