/* styles.css */
body {
    margin: 0;
    padding: 0;
    background-color: #2D2D2D;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1200px;
}

/* Logo principale */
.main-logo {
    width: 60%;
    max-width: 400px;
    margin-bottom: 40px;
}

/* Carousel Container */
.carousel {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-top: 20px;
    padding: 10px 0;
}

/* Track that holds the logos */
.carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite;
}

/* Logos inside the track */
.carousel-track img {
    height: 100px;
    filter: brightness(0) invert(1);
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

/* Footer */
footer {
    margin-top: 20px;
    padding: 15px;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    opacity: 0.7;
}

/* Responsiveness for smaller screens */
@media screen and (max-width: 768px) {
    .main-logo {
        width: 80%;
        max-width: 300px;
    }
    
    .carousel-track img {
        height: 60px;
    }
    
    .carousel-track {
        animation: scroll 15s linear infinite;
    }
    
    footer {
        font-size: 12px;
        padding: 10px;
    }
}

/* Keyframes for scrolling effect */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
