body {
  background-color: #434343;
}
#footer {
  position: absolute;
  bottom: 0;
}
.slide_image {
  max-height: 60vh;
  max-width: 90%;
  padding: 2px;
  border: 5px solid black;
}
#artwork_dsc {
  display: none;
}
#wrapper {
  width: 100%;
  text-align: center;
}
* {
  box-sizing: border-box;
}

/* Slideshow container */
.slideshow-container {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hide the images by default */
.mySlides {
  color: white;
  margin-top: 30px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 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;
}

/* 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);
}
/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@media only screen and (min-width: 600px) {
  .slide_image {
    height: 65vh;
  }
  #artwork_dsc {
    display: block;
  }
  #wrapper {
    width: 30%;
    text-align: left;
  }
}
