

*{
margin:0;
padding:0;
}

section {
  width: 100%;
  height: 450px;
  background: #ccc;
  margin: 0;
  padding: 0;
}



* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {
	
	display: flex;
	border-radius: 3.14%;
	}
img {vertical-align: top; width: 1000px; height: 330px;}

/* Slideshow container */
.slideshow-container {
 max-width: 100%;
 border-radius: 3.14%;
  position: relative;
  margin: auto;
}

/* 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) */


/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: none;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 2s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}
