h1 {
 font-size: 30px;
 color: white;
 padding-left: 14px;
 font-family: 'Trebuchet MS', sans-serif;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0px;
}

li {
  display: inline-block;
  margin-right: 20px;
}

.div1 {
 background-color: black;
 padding: 20px;
 top: 0;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex; /* or css grid for more intricate layouts */
  flex-direction: column;
}

li a:not(.pageName) {
  font-family: 'Courier New', monospace;
  font-size: 18px;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.pageName {
 float: right;
 padding-right: 700px;
}

.pageName a {
 font-family: "Lucida Console", sans-serif !important;
 font-size: 40px !important;
}

.li:hover:not(.active){
  background-color: cornflowerBlue;
}


.div2 {
 background-color: cornflowerBlue; 
 padding: 30px;
}

.description {
 font-family: 'Trebuchet MS', sans-serif;
}

/** {box-sizing:border-box}*/

  /* Slideshow container */
  .slideshow-container {
    max-width: 600px;
    position: relative;
    margin: auto;
    padding-top: 20px;
  }

  /* Hide the images by default */
  .mySlides {
    display: none;
  }

  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    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);
  }

  /* Caption text */
  .text {
    color: white;
    font-size: 18px;
    padding: 8px 12px;
    position: absolute;
    bottom: 4px;
    width: 576px;
    text-align: center;
    background-color: lightGray;
  }

  /* Number text (1/3 etc) */
  .numbertext {
  color: white;
  padding: 0px 10px;
  position: absolute;
  top: 0;
  }

  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }

  @-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
  
  .div3 {
   background-color: black; 
   padding: 50px;
  }
  
  .active {
  background-color: dodgerBlue;
  }
  

