body{
	background-color:#F2F5EA;
	color:#2C363F;
}
.navbar{
	background-color:#2C363F;
}

/* profile and mini images */
.profile, .mini{
	height:30px;
	width:30px;
	object-fit:cover;
}

.profile{
	border-radius:50%;
}

/* artist links */
.artist{
	display:block;
	margin:0 auto;
	padding:5px;
	text-decoration:none;
	font-weight:600;
}
.artist:hover{
	background-color:rgba(0,0,0,0.2);
}

/* letter search links */
.letter{
	text-decoration:none;
	padding:5px;
	border-radius:3px;
}
.letter:hover{
	color:black;
	background-color:rgb(0,0,0,0.3);
}
/* back button */
.back{
	text-decoration:none;
}
.back:hover{
	color:black;
}

/* follow/unfollow button styles */
.follow, .unfollow{
	width:100px;
	margin:0 auto;
	border-radius:10px;
	color:white;
	font-weight:900;
	border:none;
}
.follow{
	background-color:rgba(0,0,255,0.5);
}
.follow:hover{
	background-color:rgba(0,0,255,0.7);
	box-shadow:-2px 2px black;
}
.unfollow{
	background-color:rgba(255,0,0,0.75);
}
.unfollow:hover{
	background-color:rgba(255,0,0,0.9);
	box-shadow:-2px 2px black;
}

/* bookmark styles */
.bookmark{
	height:25px;
}

/* admin request tables */
caption{
	color:black;
	text-align:center;
}
.admin-request{
	caption-side: top;
	color:black;
	display:center;
	margin-left:auto;
	margin-right:auto;
}
.admin-request tr{
	border-bottom:1px solid black;
}

.center{
	margin:0 auto;
	text-align:center;
}

/*gallery styles(index page)*/



* {box-sizing: border-box}
.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* 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: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/6 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* 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}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}