.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: none;
    height: 550px;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  .mySlides img {
    position: center; 
    height: 550px;
    width: 100%; 
    object-fit: cover;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: none;
    color: #FFFFFE;
    font-size: 40px;
    font-weight: lighter;
    transition: 0.6s ease;
    user-select: none;
  }
  .prev svg{
    padding-left: 16px;
  }
  .next svg{
    padding-right: 16px;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  /* Caption text */
  .text {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    letter-spacing: 2px;
    color: #f2f2f2;
    font-size: 20px;
    position: absolute;
    top: 50px;
    left: 100px;
    width: 100%;
    text-shadow: 2px 2px 2px #383636;
  } 
  .blacktext{
    color: #000;
    text-shadow: none;
  }
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-flex;
    transition: background-color 0.6s ease;
  }
  
  .dots .active, .dot:hover {
    background-color: transparent;
    border: 1px solid #bbb;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
  @media only screen and (max-width: 600px) {
        .text {
          font-size: 20px;
          top: 40px;
          left: 20px;
          text-shadow: 3px 3px 3px #383636;
        }
        .slideshow-container {
          height: 500px;
        }
        .mySlides img {
          height: 500px;
        }
      }