.fade {
    animation-name: fade;
    animation-duration: 2s;
  }

  @keyframes fade {
    from {
      opacity: .5
    }

    to {
      opacity: 1
    }
  }

  .image-slideshow {
    text-align: center;
  }

  .slid-show img {
    margin: 20px;
    width: 90%;
    border-radius: 15px;
  }

  @media (max-width: 650px) {
    .slid-show img {
      margin: 20px 0px;
      width: 95%;
      border-radius: 15px;
    }
}