* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {
  opacity: 1;
  height: 260px;
}
img {
  vertical-align: middle;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slideshow-container {
  max-width: 1200px;
  position: relative;
  margin: auto;
  margin-top: -160px;
  height: 260px;
  overflow: hidden;
  border-radius: 16px;
  border-style: solid;
  border-color: var(--slideshow-border);
  border-width: 1px;
  box-shadow: var(--slideshow-shadow);
  -webkit-transition: all, 0.33s;
  transition: all, 0.33s;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 50% 50% 0;
  user-select: none;
  z-index: 800;
  text-shadow: #000 1px 0 10px;
}

.next {
  right: 0;
  border-radius: 50% 0 0 50%;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.5);
}

.text {
  color: #f2f2f2;
  font-size: 16px;
  padding: 8px 14px;
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  background-color: rgba(0,0,0,0.6);
  text-shadow: #000 1px 1px 4px;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  text-shadow: #000 1px 1px 2px;
}

.dot-container {
  text-align: center;
  position: absolute;
  bottom: 14px;
  width: 100%;
}

.dot {
  cursor: pointer;
  height: 4px;
  width: 80px;
  margin: 0 10px;
  background-color: #d9d9d9;
  opacity: 0.5;
  border-radius: 2px;
  display: inline-block;
  transition: background-color 0.6s ease;
  box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.75);
}

.active, .dot:hover {
  background-color: #ffffff;
  opacity: 0.7;
}

.dot:hover {
  opacity: 0.9;
}

.slidefade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .5} 
  to {opacity: 1}
}

@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

.slideshow-container .btn {
  box-shadow: 0 0 10px 2px rgba(50, 50, 50, 0.75);
}