 /* <SLIDE SHOW START HERE*/
body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: black;
    }

    .slideshow-container {
      max-width: 1000px;
      position: relative;
      margin: auto;
      overflow: hidden;
      border: 5px solid #000;
      border-radius: 10px;
      background: #ffef00; /* Canary yellow */
    }

    .slide {
      display: none;
      text-align: center;
      padding: 20px;
    }

    .slide img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }

    .text {
      background-color: #2a6099; /* Sky blue */
      color: white;
      padding: 15px;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 0 0 10px 10px;
    }

    .prev, .next {
      display: none;
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      padding: 16px;
      margin-top: -22px;
      color: black;
      font-weight: bold;
      font-size: 18px;
      border-radius: 0 3px 3px 0;
      user-select: none;
      background: #fff;
    }

    .next {
      right: 0;
      border-radius: 3px 0 0 3px;
    }

    .prev:hover, .next:hover {
      background-color: #2a6099;
      color: #fff;
    }

    @media (max-width: 768px) {
      .text {
        font-size: .9em;
      }
     .prev, .next{

        font-size: 10PX;
     }
      
    }