* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif; margin: 0; padding: 0; box-sizing: border-box; background-color: rgba(0, 0, 255, 0.0)}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 100vw;
  max-height: 100vh;
  position: relative;
  margin: auto;
  overflow: hidden;
}
.image{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height:50%;
  height: 100vh;
  width: 100vw; 
}
.img1{
  background-image: url("../images/Slideshow/1.jpg");
}
.img2{
  background-image: url("../images/Slideshow/2.jpg");
}
.img3{
  background-image: url("../images/Slideshow/3.jpg");
}
.img4{
  background-image: url("../images/Slideshow/4.jpg");
}
.dot_container{
  position: relative;
  top: -5vh;
}
/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.active {
  background-color: #3c4075;

}
/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  height: 100vh;
  width: auto;
  padding-top: 50vh;
  padding-left: 20px;
  padding-right: 20px;
  top: 0vh;
  color: white;
  font-weight: bold;
  font-size: 36px;
  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);
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}