body{
background-color: palegoldenrod;
}

footer{
color: lightblue;
}
 /*nav bar styles*/
 #navbar {
    overflow: hidden;
    background-color: #333;
  }
  
  /* Navbar links */
  #navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px;
    text-decoration: none;
  }
  
  
  .content {
    padding: 16px;
  }
  
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  /* stopps the bar from jerking ans slamming to the top */
  .sticky + .content {
    padding-top: 60px;
  }

  #navbar::after{
      content:"";
      clear: both;
  }

  /****end nav bar styles****/

/* Slideshow Styles */
.slideshow-container {
    max-width: 1200px;
    width:100%;
    height: auto;
    position: relative;
    background: #f1f1f1f1;
  }
  
  /* Slides */
  .slides {
    width: 100%;
    height: auto;
    display: none;
    padding: 5px;
    
  }

  .responsive {
    width: 100%;
    height: auto;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: rgb(240, 236, 236);
    font-weight: bold;
    font-size: 30px;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    position: absolute;
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* gives a shadow on mouse hover */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    color: white;
  }
  
  /* bottom indicator dots container */
  .dot-container {
    text-align: center;
    padding: 20px;
    background: #ddd;
  }
  
  /* bottom indicator dots */
  .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;
  }
  
  /* give a shader on mouse hover */
  .active, .dot:hover {
    background-color: #717171;
  }

  .slideshow-container::after{
      clear: both;
  }

/***end top slideshow styles***/

 

  /***Showplace Carousel***/

  
#showbox {
    width: 300px;
    height: 375px;
    margin: 0 auto;
    background: #93A1A1;
    padding: 1px 20px;
    border-radius: 10px;
    overflow: hidden;
}

#showbox h3, #showbox h4 {
    font-weight: normal;
    margin: 0;
    padding: 0;
}

#showbox h3 {
    font-size: 2em;
    line-height: .9em;
    color: #973C26;
    
}

#showbox a{
    
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1.2em;
}

#showbox img {
    float: right;
    margin-left: 10px;
    border-radius: 10px;
    width: 125px;
}

#showbox p {
    color: #1E3A40;
    font-size: .9em;
}

#showbox #next_btn, #showbox #prev_btn {
    background: #4408e9;
    padding: 5px 10px;
    border-radius: 10px;
    margin: 10px 0;
    display: inline-block;
}

#showbox a#next_btn, #showbox a#prev_btn {
    text-decoration: none;
    color: #fff;
}
.col-1, .col-2{
    float: left;
    width: 33.3%;
    padding: 5px;

}
.col-1 img, .col-2 img{
    width: 100%;
    height: auto;
}
#showbox::after{
    clear: both;
}