﻿body 
{
{
    font-family: Arial, Helvetica, sans-serif;
    background-color: lightblue;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    font-size: 11pt;
    color: #000000;
    text-align: center;
}

}
/* IMAGE SLIDER CLASSES  -----JFC 09/06/2026----------------------------------*/
.slider {
    overflow: hidden;
    /*width: 150%;*/
    width: 820px;
    height: 220px;
    background-color: lightblue;
   
}

.slide-track {
    display: flex;
    width: max-content; /* Adjust based on image count */
    animation: scroll 30s linear infinite; /* Change '20s' to speed up or slow down the interval */
    will-change: transform;
}

    .slide-track img {
        width: 250px; /* Set your desired image width */
        height: 200px;
        object-fit: cover;
        display: block;
        margin-right: 10px;
        margin-top: 10px;
        flex-shrink: 2;
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Moves the track halfway for a smooth loop */
    }
}