/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  background-image:url(https://files.catbox.moe/1nuk0s.webp);
  background-size:100% 100%;
  font-family:Comic Sans MS;
  color:#C52F6C;
     height: 100vh;
    margin: 0;
    overflow: hidden; /* Prevents scrollbars if the image goes slightly off-screen */
}

html { height: 100%; }
body { min-height: 100%; }

#move{
    
    pointer-events: none;
    height: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    z-index:100;
}

.column {
  float: left;
}

.left, .right {
  width: 25%;
}

.middle {
  width: 50%;
}

.menu {
	
	background-color:#c1c1c1;
	border: 3px outset #c1c1c1;
	align-content:center;
	margin-left:23px;
	height:30px;
	font-family:Serif;
	font-style:italic;
	font-weight:bold;
	font-size:23px;
	margin-top:10px;
	margin-bottom:10px; }

/* Slideshow container */
.slideshow-container {
  
  position: relative;
  margin: auto;
}

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

/* Next & previous buttons */
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  
}

.prev {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  
}

/* Position the "next button" to the right */
.next {
  right: 0;
}
.prev {
  left: 0;
}



/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  text-align: center;
}



/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  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}
}

