/* body stuff */
body {
  background-color: #262524;
  color: #fcc0e4;
  font-family: Courier;}
  
/* headers get centered */

h1 {
  text-align: center;
}

img {
  display: block;
  margin: auto;
  }

/* all links */
a {
  color: #bf8deb;
  font-weight: bold;}

/* visited link */
a:visited {
  color: #6632ba;}

/* mouse over link */
a:hover {
  color: hotpink;}

/* buttons */
button:hover {background-color: #bf8deb;}
button {
  background-color: #6632ba;
  border-radius: 4px;
  border: 3px solid #bf8deb;
  color: hotpink;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  }

/* carousel gallery shite */

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  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;}
.prev {
  left: 0;
  border-radius: 3px 0 0 3px;}
