.banner {
    position: relative;
    width: 100%;
    height: 700px; /* Adjust height as needed */
    overflow: hidden;
  }
  
  /* Slideshow container */
  .slideshow {
    margin-top: 50px;
    width: 300%;
    height: 100%;
    display: flex;
    animation: slideshow 40s infinite; /* Slower scroll */
  }
  
  /* Individual slides */
  .slide {
    width: 33.3333%;
    height: 100%;
    background-size: cover;
    background-position: center;
  }
  
  /* Background images for each slide */
  .slide1 {
    background-image: url('Pictures-Screenshots/D&P\ 38.jpg');
  }
  
  .slide2 {
    background-image: url('Pictures-Screenshots/D&P\ 1.jpg');
  }
  
  .slide3 {
    background-image: url('Pictures-Screenshots/callumbanner.jpg');
  }
  
  /* Slideshow animation */
  @keyframes slideshow {
    0% { transform: translateX(0); }
    33% { transform: translateX(-33.3333%); }
    66% { transform: translateX(-66.6667%); }
    100% { transform: translateX(0); }
  }
  
  /* Center button */
  .button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  
  .banner-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff5722;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .banner-button:hover {
    background-color: #e64a19;
  }