* { box-sizing: border-box; }

.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
}

.slide {
  display: none;
  position: relative;
}

.slide-image {
  vertical-align: middle;
  width: 100%;
}

.slide-text {
  color: #f2f2f2;
  font-size: 16px;
  padding: 16px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  background: rgba(100, 74, 43, 0.5);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: 2px;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from { opacity: .4 } 
  to { opacity: 1 }
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #b8aeae;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
