/* Style pour la page À propos */
body {
    font-family: Arial, sans-serif;
    color: #000000;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    overflow: auto;
}

.search-bar {
    margin-bottom: 20px;
}

.search-bar-nav {
    margin-bottom: 20px;
}

.about-header {
    /* background: #fff; */
    border-bottom: 2px solid #4B4EF7;
    padding: 40px 0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.about-header h1 {
    font-size: 2.5em;
    margin: 0;
}

.about-content {
    margin-top: 40px;
}

.about-point {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background:  #AAAFF5;
    border-radius: 8px;
    box-shadow: 0 4px px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-point:hover {
    transform: translateY(-10px);
}

.about-point img {
    width: 150px;
    height: 150px;
    margin-right: 20px;
    border-radius: 8px;
}

.about-point .about-text {
    max-width: 800px;
    text-align: left;
}

.about-point h2 {
    font-size: 1.5em;
    margin-top: 0;
}

.about-point p, .about-point ul {
    margin: 10px 0;
}

.about-point ul {
    padding-left: 20px;
}

.about-point ul li {
    margin-bottom: 10px;
}


/*tentative animation background*/
/* .background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-animation .icon {
    position: absolute;
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    animation: moveIcons 20s linear infinite;
}

.background-animation .scissors {
    background-image: url('Images/scissors-icon.svg'); 
}

.background-animation .film {
    background-image: url('Images/film-band.svg'); 
}

@keyframes moveIcons {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
} */

footer {
    background-color:#161b8c;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    clear: both;
    bottom: 0;
    width: 100%;
    
}