body {
    background-image: url('https://i.pinimg.com/736x/26/cf/3c/26cf3c80b7b5923f89fba8fe140dd660.jpg');
    background-size: 100vw 100vh;
}
.cute-header {

  font-family: "Nanum Pen Script", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  color: white;
  text-align: center;
  margin: 30px 0 20px 0;
  padding: 10px 0;
  border-radius: 15px;
  user-select: none;
  position: relative;
  z-index: 10;
}

.back-button {
  position: relative;
  display: inline-block;
  margin: 20px;
  color: black;
  font-family: "Nanum Pen Script", cursive;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
}

.back-button-image {
  display: block;
  width: 200px; 
  height: auto;
  cursor: pointer;
  z-index: -1;
  transition: filter 0.3s ease;
}
.back-button-text {
  position: absolute;
  bottom: 10px;
  left: 40px;
  color: black;
  font-family: "Nanum Pen Script", cursive;
  font-size: 48px;
  font-weight: bold;
}
* {box-sizing:border-box}
.cover-image {
  max-width: 500px;
  height: auto;
  cursor: pointer;
  display: block;
  margin: 0 auto; /* center it */
}

/* 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: #80403c;
  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;
}


/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
/*.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #80403c;
  border-radius: 50%;
  display: inline-block;
} commenting this out bc I dont fw it, sorry w3 schools*/
/*
.active, .dot:hover {
  background-color: #717171;
}
*/
/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
