html,body 
{
	margin:0; 
	padding:0; 
	width:100vw; 
	height:100vh;
	background-color:rgb(255, 255, 255); 
	color:black;
}
#mainWrapper
{
	margin:0; 
	padding:0;
	width:100vw;
	height:100vh;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  width: 100vw;
  position: absolute;
  margin: 0;
  padding:0;
}

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

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  bottom: 5%;
  width: auto;
  color: black;
  font-weight: bold;
  font-size: 2vmin;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.prev
{
	left:25%;
}
/* Position the "next button" to the right */
.next {
  right: 25%;
  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);
}
