  header {
    color: #fff9f0;
    background-color: #73c7e3;
    text-align: center;
    font-family: verdana;
    position: fixed;
    padding: 0;
    width: 100%;
    
    top: 0;
    left: 0;
    border: 5px solid #cf8a40;
    border-left: none;
    border-top: none;
    border-right: none;
    height: fit-content;
    z-index: 1;
  }

  html, body {
    height: 100%;
    margin: 0;
  }

  body {
      display: flex;
      flex-direction: column;
  }

  footer {
    color: #fff9f0;
    background-color: #73c7e3;
    text-align: center;
    font-family: verdana;
    padding: 0;
    width: 100%;
    margin: 0;
    border-top: 5px solid #cf8a40;
    border-left: none;
    border-bottom: none;
    border-right: none;
    height: auto;
    box-sizing: border-box;
}

.slideshow-container {
  position: relative;
  max-width: 1000px;
  margin: 120px auto 40px auto;
  overflow: hidden;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  border-radius: 5px;
}

.text {
  color: #fff9f0;
  text-shadow: 1px 1px 0 #cf8a40;
  font-size: 24px;
  font-family: verdana;
  padding: 12px 16px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 0 0 5px 5px;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.25);
}

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

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

.fade {
  animation: fade 1.5s;
}

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