﻿/*body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f9;
}*/

.testimonials-container {
    width: 100%;
    /*max-width: 600px;*/
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.slider {
    display: flex;
    animation: slide 15s infinite;
}

.testimonial {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    color: #333;
}

.testimonial p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.testimonial h4 {
    font-size: 1em;
    font-weight: bold;
    color: #555;
}

@keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}
